SMART datagrid v.1 > Classes > DataColumn

Back  Forward

DataLudi.DataColumn.fieldName  property

DataField name which will be connected to this column. If do not specify this value or it is a wrong name, it will look for data field through fieldIndex property value. 

Defaults to null.

Getter
function fieldName(): String
Setter
function setFieldName(value: String)
Code -1
    var col = grid.focusedIndex().column;
    consol.log(col.fieldName());
See Also
fieldIndex
DataField
Examples
HelloGrid