SMART datagrid v1.4 > Classes > ListCellEditor

Back  Forward

DataLudi.ListCellEditor.itemSortStyle  property

리스트 상자의 항목들을 정렬하는 방식을 DropDownSortStyle 상수로 지정한다. 

기본값은 DropDownSortStyle.NONE.

Getter
function itemSortStyle(): DropDownSortStyle
Setter
function setItemSortStyle(value: DropDownSortStyle)
Code -1
    var columns = [{
            name: "CustomerID",
            fieldName: "CustomerID",
            width: "120",
            editor: {
                type: "list",
                itemSortStyle: DataLudi.DropDownSortStyle.DESCENDING,
                ...
            }
        }, 
        ...
    ];
    grid.setColumns(column);
See Also
values
labels
DropDownSortStyle
Examples
List Cell Editor