Categories | Question details Back To List | ||
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"); } |