Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Huzefa on Oct 11, 2009 08:48
open dhtmlx forum
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?