If you call invalidateList(), every row should get re-drawn. It might be easier to do that and defend the one renderer.
________________________________ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott - FastLane Sent: Thursday, October 25, 2007 12:26 PM 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 renderer to re-display the altered data. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com <http://www.fastlanesw.com> mrand02 wrote: 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 way to access the itemRenderer content for a specific row. Thanks. MR