SMART datagrid v.1 > Classes > ListCellEditor

Back  Forward

DataLudi.ListCellEditor.narrowSearch  property

If specify as true, it will display only the items of which first part matches the currently entered value in list. 

Defaults to false.

Getter
function narrowSearch(): Boolean
Setter
function setNarrowSearch(value: Boolean)
Code -1
    grid.setColumns([
        ...,
        {
            name: 'colList',
            editor: {
                type: "list",
                narrowSearch: true
                ...
            }
        }
    ]);
See Also
partialMatch
insideSearch
Examples
List Editors 2
List Cell Editors