How can I disable checkbox when it is selected Kernel?.
Code:
<table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr><td align="right" width="40%" valign="top" class="text1">Facility:</td> <td width="60%" valign="top" class="text1"> <select name="logConfig.facility" size="1" class="txtbox" id="selFacility"> <option $| web.dropdownSelected(configRow["logConfig.facility"] == "Kernel") |$ value="Kernel">Kernel</option> <option $| web.dropdownSelected(configRow["logConfig.facility"] == "System") |$ value="System">System</option> </select> <input type="submit" value="Apply" class="button1" title="Apply" name="button.choose.logConfig.logs"></td> </tr> <tr><td width="100%" valign="top" colspan="2"> <table border="0" cellpadding="0" cellspacing="0" width="100%" class="text1"> <tr> <td width="12%" align="center"> </td> <td width="20%" align="center">Display in event Log</td> <td width="18%" align="center">Send to syslog</td> </tr> <tr> <td width="12%" align="right">Debugging:</td> <td width="20%" align="center"><input type="checkbox" name="logConfig.debug1" $| web.checkboxSelected(debugChoices[1] == 1) |$ value="1"> <input type="hidden" name="logConfig.debug1" value="0"></td> <td width="18%" align="center"><input type="checkbox" name="logConfig.debug3" $| web.checkboxSelected(debugChoices[3] == 1) |$ value="1"> <input type="hidden" name="logConfig.debug3" value="0"></td> </tr> </table></td></tr> </table>
Comment