0

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.

4

1 回答 1

0

我知道了。很抱歉让您对我的问题感到困惑。它与将更新数据库的数据库对象映射,并在调用页面时显示来自数据库的数据。

于 2014-03-14T12:00:16.523 回答