SMART datagrid v1.4 > Classes > DataColumn

Back  Forward

DataLudi.DataColumn.dataFieldName  property

이 컬럼에 연결된 DataField의 이름. 

필드 인덱스는 dataIndex로 알 수 있다. 필드 연결은 fieldName이나 fieldIndex 속성으로 지정한다. 

Getter
function dataFieldName(): String
Code -1
    $('#getFieldName').click(function () {
        var col = grid.focusedIndex().column;
        if (col) {
            alert(col.dataFieldName());
        }
    });
See Also
fieldName
fieldIndex
dataIndex
DataField.index
Examples
Hello Grid