I have a combobox:
<input id="unit_FIELD" class="easyui-combobox"
name="unit_FIELD" data-options=" url:'get_units.php',
valueField:'unitID',
textField:'unitID'
">
I'm populating the ComboBox just fine with the get_units.php code.
[{"unitID":"ALL"},{"unitID":"001"},{"unitID":"002"},{"unitID":"003"},{"unitID":"004"}]
I need to be able to have a default selected...
How do I select the first item in the combox by default WHEN the combobox is popluated from a Database?
-Tom