SMART datagrid v.1 > Classes > DataColumn

Back  Forward

DataLudi.DataColumn.fieldIndex  property

The index of DataField which will be connected to this column. If fieldName property has already specified an appropriate data field, this value will be ignored. 

Defaults to -1.

Getter
function fieldIndex(): Integer
Setter
function setFieldIndex(value: Integer)
Code -1
    var column = grid.focusedIndex().column;
    alert(column.fieldIndex());
See Also
fieldName
DataField
Examples
HelloGrid