Hi, if I have a for example this struts tag:
<s:select name="country.id"
list="countries"
listValue="name"
listKey="id"
headerValue="Select Country"
headerKey=""
label="Country" />
output is the following html code:
<select name="country.id" tabindex="12" id="registration_country">
<option value="">
Select Country</option>
<option value="1">
United States</option>
<option value="2">
Afghanistan</option>
<option value="3">
Albania</option>
<option value="4">
Algeria</option>
...
<option value="192">
Zambia</option>
<option value="193">
Zimbabwe</option>
</select>
what shall I do, if I wanna the option number 1, 3, 4 disabled?