Hi All,
In my below code I want to make <html:select> as readonly like I did for <html:text>
I don't want to make it disabled as it is graying out that field.
My requirement is that it should be visible and also it shouldn't be editable.
I am using Struts...!!!
<html:text property="paramName" size="20" maxlength="50" readonly="true"/>
<html:select property="paramTypeId" disabled="true"> // I dont want to use this--- disabled="true"
<html:options collection="queryReturnType" property="value" labelProperty="label"/>
</html:select>
Thanks in advance....!!