Re: [flexcoders] xml-combobox

2005-04-14 Thread ibibas


Thanks, Manish.

Isaac Bibás Forado




   
  Manish Jethani
   
  [EMAIL PROTECTED]Para: 
flexcoders@yahoogroups.com
  mail.comcc:  
   
   Asunto:   Re: [flexcoders] 
xml-combobox 
  14/04/2005 00:31  
   
  Por favor,
   
  responda a
   
  flexcoders
   

   

   




On 4/13/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


 mx:ComboBox id=object_list backgroundColor=#FF cornerRadius=0
   dataProvider={helpList.obj} width=180
   change=selectFields(event) initialize=sort();/

 In selectFields function I create dataprovider for 2nd combo:

 mx:ComboBox id=field_list backgroundColor=#FF cornerRadius=0
   width=180
   change=display_help(event) initialize=sort();/
[snip]

I would simply use data binding to set this up.

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
  xmlns=*

  mx:Model id=model
root
  items label=item1
recordone/record
recordtwo/record
  /items
  items label=item2
recordthree/record
recordfour/record
  /items
/root
  /mx:Model

  mx:ComboBox id=cb1 dataProvider={model.root.items} /
  mx:ComboBox id=cb2 dataProvider={cb1.selectedItem.record} /

/mx:Application

--
[EMAIL PROTECTED]
http://manish.revise.org/

Yahoo! Groups Links
  To visit your group on the web, go to:
  http://groups.yahoo.com/group/flexcoders/

  To unsubscribe from this group, send an email to:
  [EMAIL PROTECTED]

  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.






 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] xml-combobox

2005-04-13 Thread Manish Jethani

On 4/13/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


 mx:ComboBox id=object_list backgroundColor=#FF cornerRadius=0
   dataProvider={helpList.obj} width=180
   change=selectFields(event) initialize=sort();/
 
 In selectFields function I create dataprovider for 2nd combo:
 
 mx:ComboBox id=field_list backgroundColor=#FF cornerRadius=0
   width=180
   change=display_help(event) initialize=sort();/
[snip]

I would simply use data binding to set this up.

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;
  xmlns=*

  mx:Model id=model
root
  items label=item1
recordone/record
recordtwo/record
  /items
  items label=item2
recordthree/record
recordfour/record
  /items
/root
  /mx:Model

  mx:ComboBox id=cb1 dataProvider={model.root.items} /
  mx:ComboBox id=cb2 dataProvider={cb1.selectedItem.record} /

/mx:Application

-- 
[EMAIL PROTECTED]
http://manish.revise.org/


 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/