SMART datagrid v.1 > Classes > ListCellEditor
It specifies the way of sorting items of list box by DropDownSortStyle constant.
Defaults to DropDownSortStyle.NONE.
var columns = [{
name: "CustomerID",
fieldName: "CustomerID",
width: "120",
editor: {
type: "list",
itemSortStyle: DataLudi.DropDownSortStyle.DESCENDING,
...
}
},
...
];
grid.setColumns(column);