Hi,
Is there any way to manipulate the size (row height, column width) of a select box.
I populate my select box, but don't want the size of the box to be dependent on the data returned.
Here's my select statement:
Thank you in advance.
soho34
Is there any way to manipulate the size (row height, column width) of a select box.
I populate my select box, but don't want the size of the box to be dependent on the data returned.
Here's my select statement:
Code:
<select name="services" multiple size="allservices.recordcount">
<cfloop query="allservices">
<cfif Find("#description#",vendservice_list)>
<option value="#servicetypesid#" selected>#description#</option>
<cfelse>
<option value="#servicetypesid#">#description#</option>
</cfif>
</cfloop>
</select>
Thank you in advance.
soho34