Categories | Question details Back To List | ||
Late Bind Combobox content 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 Answer posted by Alex (support) on Oct 12, 2009 03:26 Hello, there is onOpen event in combo. You can try to use it: combo.attachEvent("onOpen",function(){ combo.loadXML(...); }) Answer posted by Huzefa on Oct 12, 2009 06:15 Is this applicable for both Grid combo and dhtmlxCombo? |