[flexcoders] Change all other DataGrid rows from target row

2007-10-25 Thread mrand02
I have a custom inline itemRenderer in one of my datagrid columns that contains a LinkButton. When this button is pressed, I'd like to be able to change something on every row except the one that was clicked in the same column (so same itemRenderer). Is it possible to do this? I can't find any

Re: [flexcoders] Change all other DataGrid rows from target row

2007-10-25 Thread Scott - FastLane
I would try dispatching an event and letting it bubble out to the parent of the grid control... then update all rows in the grid's dataProvider and then invalidate. This should cause the custom renderer to re-display the altered data. hth Scott Scott Melby Founder, Fast Lane Software LLC

RE: [flexcoders] Change all other DataGrid rows from target row

2007-10-25 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Change all other DataGrid rows from target row I would try dispatching an event and letting it bubble out to the parent of the grid control... then update all rows in the grid's dataProvider and then invalidate. This should cause the custom