Packageorg.openzet.controls.dataGridClasses
Classpublic class DataGridTreeItemRenderer
InheritanceDataGridTreeItemRenderer Inheritance mx.core.UIComponent
Implementsmx.controls.listClasses.IDropInListItemRenderer, mx.controls.listClasses.IListItemRenderer, mx.core.IDataRenderer

Default DataGridTreeItemRenderer class that is used within a TreeDataGrid and AdvancedTreeDataGrid.

See also

org.openzet.controls.TreeDataGrid
org.openzet.controls.AdvancedTreeDataGrid


Public Properties
 PropertyDefined by
  data : Object
A property to specify a row item data of an itemRenderer.
DataGridTreeItemRenderer
  listData : BaseListData
An implementation of IDropInListItemRenderer interface.
DataGridTreeItemRenderer
Public Methods
 MethodDefined by
  
Constructor
DataGridTreeItemRenderer
Property detail
dataproperty
data:Object  [read-write]

A property to specify a row item data of an itemRenderer.

Implementation
    public function get data():Object
    public function set data(value:Object):void
listDataproperty 
listData:BaseListData  [read-write]

An implementation of IDropInListItemRenderer interface. Now AdvancedDataGrid provides custom DataGriListData class called AdvancedDataGridListData to make a tree view in an AdvancedDataGrid. Yet here we don't define any custom ListData class yet internally uses Dictionary instances to track down tree view data. So you don't need to worry about what type of BaseListData you should provide here. Just leave either DataGrid or AdvancedDataGrid to do whatever they want.

Implementation
    public function get listData():BaseListData
    public function set listData(value:BaseListData):void
Constructor detail
DataGridTreeItemRenderer()constructor
public function DataGridTreeItemRenderer()

Constructor