RE: [flexcoders] Combobox in Datagrid appears empty

2009-12-15 Thread Alex Harui
Are you sure genreList is an array or ArrayCollection? Is the model bindable? Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of emarionjacobs Sent: Tuesday,

RE: [flexcoders] Combobox in DataGrid

2009-09-17 Thread Battershall, Jeff
You'll have to subclass your ComboBox for starters. The available ComboBox items depend on an item in the DG's dataProvider, I would assume? If so, having one master list of available items, and then filtering the ComboBox's dataProvider based on a particular item's attributes might be a good

RE: [flexcoders] Combobox in DataGrid

2009-09-17 Thread Tracy Spratt
available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Battershall, Jeff Sent: Thursday, September 17, 2009 3:07 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Combobox in DataGrid You'll have to subclass your ComboBox for starters

RE: [flexcoders] Combobox And Datagrid

2008-04-28 Thread Tracy Spratt
Renderers are recycled. You cannot do the display work in the creationComplete event handler, but must instead override the set data() method, and ideally, use the invalidation system to defer the work until the framework is ready to do it. Search the archives or google for examples.

RE: [flexcoders] Combobox And Datagrid

2008-04-27 Thread Alex Harui
Renderers are recycled. See my blog (blogs.adobe.com/aharui). It is almost never correct to use creationComplete in a renderer. Setting selectable=false has also caused problems in the past. Why do you need to turn off selectable? From:

RE: [flexcoders] ComboBox and DataGrid - set data() call causes next ComboBox to collapse...

2007-11-25 Thread Tracy Spratt
that. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Saturday, November 24, 2007 3:22 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ComboBox and DataGrid - set data() call causes next ComboBox

Re: [flexcoders] ComboBox and DataGrid - set data() call causes next ComboBox to collapse...

2007-11-25 Thread George
that. Tracy *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Alex Harui *Sent:* Saturday, November 24, 2007 3:22 AM *To:* flexcoders@yahoogroups.com *Subject:* RE: [flexcoders] ComboBox

RE: [flexcoders] ComboBox and DataGrid - set data() call causes next ComboBox to collapse...

2007-11-24 Thread Alex Harui
Did you set editable=true on the DG? If so, it should update the data on itemEditEnd and not on change. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cmarkiewicz Sent: Friday, November 23, 2007 1:43 PM To: flexcoders@yahoogroups.com