Can you recommend a good practice for populating form fields after retrieving the data with the adapter if you have a lot of inputs, checkboxes etc (Single record)
Doing the following doesn’t look right…. would using an array and looping thing through inputs, checkboxes, etc be the best way?
$(“#first”).jqxInput().val(record[‘first’]);
$(“#last”).jqxInput().val(record[‘last’]);
$(“#employee”).jqxCheckBox().val(record[‘is_employee’]);
$(“#locked”).jqxCheckBox().val(record[‘locked’]);
$(“#is_client”).jqxCheckBox().val(record[‘is_client’]);
……
…… many more inputs