|
Anurag, Yes, as someone pointed out before, you can use a custom
itemRenderer. Yours would look something like the code provided below. Notice
that if you want the ComboBox to be editable, you should specify that
renderIsEditor=”true” and specify the editorDataField. <mx:DataGrid id="skillDG"
width="100%" height="100%
<mx:itemRenderer>
<mx:Component>
<mx:ComboBox>
<mx:dataProvider>
<mx:String> beginner</mx:String>
<mx:String> intermediate</mx:String>
<mx:String> expert</mx:String>
</mx:dataProvider>
</mx:ComboBox>
</mx:Component>
</mx:itemRenderer> </mx:DataGridColumn>
Joan From: Hi all, -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___ |
- RE: [flexcoders] Datagrid with a dropdown column! Joan Lafferty

