Hi,
I want to bind the XML to combobox after user clicks the combo button.
I have a relation between combobox and some other control on form. when user selects some value on other element then based on that value i will populate this combobox after getting the filtered value from server.
Please tell me how can i achieve this using dhtmlxCombo?
Thanx,
Huzefa
Hello,
there is onOpen event in combo. You can try to use it:
combo.attachEvent(“onOpen”,function(){
combo.loadXML(…);
})
Is this applicable for both Grid combo and dhtmlxCombo?