By the way, this is the way I instantiate the ItemRenderer: package pt.solidsoft.framework.components.datagrid.textgridcolumn { import pt.solidsoft.framework.components.datagrid.DataGridColumn; import org.apache.royale.core.ClassFactory; import pt.solidsoft.framework.components.datagrid.textgridcolumn.TextGridItemRenderer;
public class TextGridColumn extends DataGridColumn { public function TextGridColumn() { itemRenderer = new ClassFactory(TextGridItemRenderer); } } } Hugo Ferreira <hferreira...@gmail.com> escreveu no dia domingo, 14/11/2021 à(s) 12:00: > Hi, > > I already have my DataGrid completely editable with all the features > (Enter and Tab keys). > I want now to implement the editable property on the DataGridColumn, so I > could choose each column to be editable. > However I need to access this property inside DataGridColumn from the > DataGridItemRenderer perspective. > > I couldn't find a way to navigate to DataGridColumn thru > DataGridItemRenderer. > > Any thoughts? >