This works:
------------------------------------- <tr> <td>groups</td> <td><input name="CustomerGroups" type="text" id="CustomerGroups" value="<%=(rsCustomer.Fields.Item("CustomerGroups").Value)%>" /></td> </tr> -------------------------------------
This does not:
------------------------------------- <tr> <td>groups</td> <td><% '**************************** ' http://www.DwZone-it.com ' Advanced Form Elements ' Comma-separated Checkboxes ' Version 1.6.1 '**************************** dwz_FieldName = "CustomerGroups" dwz_Column = "1" dwz_Recordset = "rsCustomerGroups" dwz_FieldValue = "CustomerGroupID" dwz_FieldText = "CustomerGroupName" dwz_ValueList = (rsCustomer.Fields.Item("CustomerGroups").Value) dwz_TableClass = "" dwz_ChkCellClass = "" dwz_TxtCellClass = ""
dwzCreateChkboxTable dwz_Recordset, dwz_FieldValue, dwz_FieldText, dwz_FieldName, dwz_Column, dwz_ChkCellClass, dwz_TxtCellClass, dwz_TableClass, dwz_ValueList %> <input class="dwzDisplayNone" type="checkbox" name="CustomerGroups" id="CustomerGroups" /> <label for="CustomerGroups"></label></td> </tr> -------------------------------------
The rest of the code is identical. What am I missing? |
|
|