SMART datagrid v.1 > Classes > ListCellEditor

Back  Forward

DataLudi.ListCellEditor.caseSensitive  property

If it is true, it will be case sensitive when searching list item with text input value. 

Defaults to false.

Getter
function caseSensitive(): Boolean
Setter
function setCaseSensitive(value: Boolean)
Code -1
    var columns = [{
            name: "CustomerID",
            fieldName: "CustomerID",
            width: "120",
            editor: {
                type: "list",
                caseSensitive: true,
                values: ["VN", "HN", "SP", "VC", "TR", "SV"],
                labels: ["VINET", "HANAR", "SUPRD", "VICTE", "THREE", "SEVEN"]
            }
        }, 
        ...
    ];
    grid.setColumns(column);
See Also
domainOnly
itemSortStyle
Examples
List Cell Editor