[flexcoders] Re: Generalizing an itemrenderer.

2007-10-07 Thread generalxxaxx
Thanks to you both I got it working. Much appreciate the help. Claude --- In flexcoders@yahoogroups.com, bhaq1972 [EMAIL PROTECTED] wrote: if your using a combobox or textinput or anything which implements IDropInlistItemRenderer, then you can do this in your data setter var

[flexcoders] Re: Generalizing an itemrenderer.

2007-10-05 Thread bhaq1972
if your using a combobox or textinput or anything which implements IDropInlistItemRenderer, then you can do this in your data setter var myListData:DataGridListData = DataGridListData(listData); var myDataField:String = myListData.dataField; valueYourInterestedIn = data[myDataField]; --- In