SMART datagrid v.1 > Classes > ListCellEditor

Back  Forward

DataLudi.ListCellEditor.partialMatch  property

If specify as true, it will search by only comparing initial sound in the case of the character which has only entered initial sound. 

Defaults to false.

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