Skip to main content

Hi, i use a list (multiple-selection) in my Nintex 2016 Form. The List can hold up to 20 or more items.

My Problem: The multiple select-field shows only 4 rows, but i need to see more rows.

The Code of the HTMl-Element:

<select name="XYZ" class=" nf-client-control " id="idXYZ1" style="width: 100%;" size="4" multiple="multiple" formcontrolid="d2733917-13de-4a20-97ec-dab52223ec49" data-use-attribute-as-value="data-nfChoiceValue">

... some options ...

</select>

Now i need a solution to overwrite the "size='4'" with css or other features in Nintex Forms 2016

Add this script to your form

$('#idXYZ1').attr('size',7)


Reply