SMART datagrid v.1 > Classes > DataColumn
The name of DataField connected to this column.
Field index can be known by dataIndex. Field connection is specified by fieldName or fieldIndex property.
$('#getFieldName').click(function () {
var col = grid.focusedIndex().column;
if (col) {
alert(col.dataFieldName());
}
});