Skip to content

Instantly share code, notes, and snippets.

@simion314
Last active December 17, 2015 17:08
Show Gist options
  • Save simion314/5643526 to your computer and use it in GitHub Desktop.
Save simion314/5643526 to your computer and use it in GitHub Desktop.
Acces the Flex spark DataGrid ItemRenderer for specific row and column
//this object is a DataGrid
public function getItemRenderer(row:int,column:int):IGridItemRenderer{
return ((this.grid.layout) as Object).getVisibleItemRenderer(row,column);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment