On April 27, 2024, our Sign-in and Create Account options will be unavailable from 9am-12pm ET. During this maintenance window, developer account access and free trial registration will be unavailable.

TS 6.0 - Multiple Select Size Issue/Bug?

I cannot get my form to recognize the size attribute of a multiple select item in 6.0. Can anyone confirm that this is a bug in 6.0+ or am I doing something wrong.

In a DCT create a select item like so:

<item name="service">
<label>Test</label>
<description>Test</description>
<select required="t" size="6" multiple="t">
<option value="1" label="1" />
<option value="2" label="2" />
<option value="3" label="3" />
<option value="4" label="4" />
<option value="5" label="5" />
<option value="6" label="6" />
<option value="7" label="7" />
<option value="8" label="8" />
</select>
</item.


When rendered, it still shows the browser default of four options rather then six. 5.5+ does recognize this attribute.

I looked through the 6.0L release notes and didn't find any related references. Can anyone confirm?