RE: [flexcoders] Explicitly setting the height of a row in a DataGrid

2010-04-27 Thread Jay Proulx
Because I want to add a colSpan so to speak, so that I can have a row renderer for child data. e.g.: listContent |[ Cell ] [ Cell ] [ Cell ]| |[ Child ]| [ Cell ] [ Cell ] [ Cell ] [ Cell ] [ Cell ] [ Cell ] [ Cell ] [ Cell ] [ Cell ] /listContent i.e.: Child

Re: [flexcoders] Explicitly setting the height of a row in a DataGrid

2010-04-27 Thread Alex Harui
I would do that by having a renderer that draws outside its given bounds, and other renderers to the right that set alpha=0 so they don’t show up. On 4/26/10 11:01 AM, Jay Proulx jason.pro...@gmail.com wrote: Because I want to add a colSpan so to speak, so that I can have a row renderer

Re: [flexcoders] Explicitly setting the height of a row in a DataGrid

2010-04-27 Thread Jason Proulx
Excellent suggestion, thanks Alex! Jay Sent from my iPad On 2010-04-27, at 10:54 AM, Alex Harui aha...@adobe.com wrote: I would do that by having a renderer that draws outside its given bounds, and other renderers to the right that set alpha=0 so they don’t show up. On 4/26/10 11:01 AM, Jay

Re: [flexcoders] Explicitly setting the height of a row in a DataGrid

2010-04-26 Thread Alex Harui
I think rowInfo is going to get refreshed by makeRowsAndColumns. Why are you adding to listContent? Normally you’d alter the measuredHeight of a renderer to get a row to grow and add any new widgets to the renderer. On 4/26/10 7:21 AM, Jay Proulx jason.pro...@gmail.com wrote: Good