Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Vicent on Apr 27, 2008 03:10
open dhtmlx forum
I can to This?

When I create Combo from XML. I can use "setComboText". Why ?
Answer posted by Support on Apr 28, 2008 03:25
Probably, you  have meant that you  can NOT set combo text ?

If so it is possible that you use tried to use this method before xml loading is ended.

Please, try to use the following:

combo.loadXML("some.xml",doAfterLoading);

funciton doAfterLoading(){
       combo.setComboText("some text");
}