Hi Peter,
actually I have tried to set the value in loadComplete callback function and it works right if I have only one combobox.
If I have two or more comboboxes than loadComplete function fires only after the last created combobox.
The same situation with “bindingComplete” event handler.
May be I should have different dataAdapters for each combobox?
....
$(comboBoxTag).jqxComboBox({source : dataAdapter,
displayMember : "name",
valueMember : "id",
width : 200,
height : 20,
autoDropDownHeight : true
});
$(comboBoxTag).on("bindingComplete", function (event) {
$(comboBoxTag).jqxComboBox('val',value); });
...