Re: [flexcoders] Re: Flex 1.5 Question

2007-04-13 Thread Jatin Nanda
. It will be slightly faster and smaller than using VBox. -- *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Jatin Nanda *Sent:* Thursday, April 12, 2007 3:34 AM *To:* [EMAIL PROTECTED] *Subject:* Re: [flexcoders] Re: Flex 1.5 Question Hi Doug, Alex, Thx

Re: [flexcoders] Re: Flex 1.5 Question

2007-04-12 Thread Jatin Nanda
Hi Doug, Alex, Thx for your emails. Got it to work, I just changed my cell renderer from extending UIComponent to extending VBox. Thanks for the hint :-) Cheers, J On 11 Apr 2007 17:59:53 -0700, Doug Lowder [EMAIL PROTECTED] wrote: Ah, sorry, I missed the fact that it was for a single

RE: [flexcoders] Re: Flex 1.5 Question

2007-04-12 Thread Alex Harui
: Thursday, April 12, 2007 3:34 AM To: [EMAIL PROTECTED] Subject: Re: [flexcoders] Re: Flex 1.5 Question Hi Doug, Alex, Thx for your emails. Got it to work, I just changed my cell renderer from extending UIComponent to extending VBox. Thanks for the hint :-) Cheers, J On 11 Apr 2007 17:59:53 -0700

[flexcoders] Re: Flex 1.5 Question

2007-04-11 Thread Doug Lowder
In 1.5, you can do this directly from the datagrid with the setPropertiesAt() method - no cell renderer required. myGrid.setPropertiesAt(rowIndex, {backgroundColor: 0xFF}); If you must use a cellrenderer, just set the background of your container (canvas, hbox, or what have you) in the

Re: [flexcoders] Re: Flex 1.5 Question

2007-04-11 Thread Jatin Nanda
HI Doug, Thanks for the tip - but unfortunately it affects the whole row, not just one cell ... Tried changing the bgcolor, which doesn't seem to work either. Any other thoughts? Thanks in advance, J On 11 Apr 2007 12:58:15 -0700, Doug Lowder [EMAIL PROTECTED] wrote: In 1.5, you can do

RE: [flexcoders] Re: Flex 1.5 Question

2007-04-11 Thread Alex Harui
Define a custom cell renderer for that column. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jatin Nanda Sent: Wednesday, April 11, 2007 4:41 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Flex 1.5 Question HI Doug

[flexcoders] Re: Flex 1.5 Question

2007-04-11 Thread Doug Lowder
Ah, sorry, I missed the fact that it was for a single cell instead of the entire row. So do you already have a cell renderer based on something like HBox, and if so have you tried setting the backgroundColor property? What happened? I would think that should work. I'll see if I can put