In my JSP I am trying to add a field with a check box option. I am modifying the existing code.
Existing Code is,
<tr>
<td class="right">
<signifo:label key="vendor.title"/> Enabled
</td>
<td class="left">
<html:checkbox property="vendorEnabled" styleId="vendorchkbx" onclick="isVendorEnabled(this);"/>
<html:hidden property="vendorEnabled" value="false"/>
</td>
</tr>
Modified one is
<tr>
<td class="right">
<signifo:label key="duplicatecheck.title"/> Enabled
</td>
<td class="left">
<html:checkbox property="duplicateCheckEnabled" styleId="duplicatechkbx"/>
</td>
</tr>
In the modified one,styleId
is duplicatechkbx
, please tell me where this might be assigned as check box?
In any Javascript or CSS?
I have no idea.. please somebody help.
Regards.