Hi list, I've got a DataGrid and what I want to do is disable some rows so the user can't interact with it in any way (on click or on mouse over/out)
I'm trying to set properties in a DataGrid row, but I don't find a "row" class anywhere. What I've done so far is access the itemRenderer object, but it only sets enabled=false the first cell in the row. -- code ----------------------------------------------- var someItemReference:Object = my_datagrid.selectedItem; var itemRenderer:IListItemRenderer = my_datagrid.itemToItemRenderer(someItemReference); itemRenderer.enabled = false; -- end code ------------------------------------------- Any suggestions? Cheers! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

