RE: [flexcoders] Re: How to assign a data provider to a combo box

2005-08-05 Thread Philippe Maegerman
As suggested before, do the binding in the result event of your webservice     Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of terry_hrtnSent: jeudi 4 août 2005 18:25To: flexcoders@yahoogroups.comSubject: [flexcoders] Re: How to assign a

Re: [flexcoders] Re: How to assign a data provider to a combo box

2005-08-04 Thread Manish Jethani
On 8/4/05, terry_hrtn <[EMAIL PROTECTED]> wrote: > yes and no -- won't work in my case. Action script calls web services > async. I have a single web service that returns multiple values > depending on whats passed in, so having: > > webservice.send(); > comboBox.dataprovider=webservice.result

[flexcoders] Re: How to assign a data provider to a combo box

2005-08-04 Thread terry_hrtn
yes and no -- won't work in my case. Action script calls web services async. I have a single web service that returns multiple values depending on whats passed in, so having: webservice.send(); comboBox.dataprovider=webservice.result There is no data in webservice.result until webservice.send

[flexcoders] Re: How to assign a data provider to a combo box

2005-08-04 Thread sir_janksalot
Try: MyComboBox.dataProvider = MyWebService.MyFunction.result; --- In flexcoders@yahoogroups.com, "terry_hrtn" <[EMAIL PROTECTED]> wrote: > Is there a way to assign a data provider to combo box at run time using > action script instead of mxml? > > I've tried: > function setCombo(){ > MyW