Re: [Flashcoders] Cellrenderer confirmation

2006-01-25 Thread JesterXL
For the event part, CellRenderers have access to both the cell and list they are in. So, if you do this.listOwner; that's the DataGrid. You can either dispatch events and make them bubble, or dispatch them from the DataGrid's scope; listOwner.dispatchEvent. Additionally, if you want to

RE: [Flashcoders] Cellrenderer confirmation

2006-01-25 Thread Stacey Mulcahy
I believe the list components calculate the visible space divided by the row height and figure out how many rows to render. Visible being the amount of rows the height and row height of the component will allow - not being total rows in reference to amount of dataprovider items. Not sure that is

Re: [Flashcoders] Cellrenderer confirmation

2006-01-25 Thread Derek Vadneau
the multiple calls to setValue. Do you see any issues with that? Derek Vadneau - Original Message - From: JesterXL [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, January 25, 2006 2:15 PM Subject: Re: [Flashcoders] Cellrenderer confirmation

Re: [Flashcoders] Cellrenderer confirmation

2006-01-25 Thread JesterXL
, 2006 3:08 PM Subject: Re: [Flashcoders] Cellrenderer confirmation Thanks Jesse. What do you mean by make the events bubble? I know I can do listOwner.dispatchEvent - it's what I'm doing now - but is there a better way than accessing the listOwner? By better I mean accessing the listOwner's