Re: [flexcoders] 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: > Is there a way to assign a data provider to combo box at run time using > action script instead of mxml? Yups, simply set the dataProvider property. comboBox.dataProvider = newDataProvider; Manish Yahoo! Groups Spons

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

2005-08-04 Thread João Fernandes
Terry,   What you can do is to assign a result event to your webservice method and then bind the result to the combo box dataprovider.                 João Fernandes Secção de Desenvolvimento Departamento de Informática From: flexcoders@yahoogroup

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

2005-08-04 Thread chris.alvarado
MyComboBox.dataProvider = result; should do it. On 8/4/05, 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(){ >MyWebService.MyFunction.send(); >