SMART datagrid v1.4 > Classes > CellIndex
DataLudi.CellIndex.columnIs method
매개변수 columnName이 column과 동일하거나, column의 이름과 동일하면 true를 리턴한다.
function columnIs (columnName: String|GridColumn, ignoreCase: Boolean): Boolean;
- Returns
- Boolean
- Parameters
- columnName - String|GridColumn. required.
비교할 컬럼 이름이나 컬럼 객체.
- ignoreCase - Boolean. 기본값은 false.
이름으로 비교할 때, 이 값이 true면 대소문자 구분을 하지 않는다.
Code -1
grid.onGetEditValue = function (grid, index, editResult) {
if (index.columnIs('orderid', true)) {
editResult.value += '_x';
}
}
- See Also
- column
- rowIndex
- GridColumn
- Examples
- 포커스 셀