Hi! When FieldLabel is placed before its element (in HTML template) - everything is OK:
... <td> <label for="cbUnreachable">Unreachable</label> </td> <td> <input type="checkbox" name="cbUnreachable" id="cbUnreachable" class="portlet-form-field"/> </td> ... But if the label is placed after its element than the label's "for" attribute is pointing to wrong element: ... <tr> <td> <input type="checkbox" name="cbBusy" id="cbBusy" class="portlet-form-field"/> </td> <td> <label for="cbBusy_0">Busy</label> </td> </tr> ... This concerns not only checkboxes. This is valid for T4 beta 11 release. Best regards Andriy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
