SMART datagrid v1.4 > Classes > ListCellEditor

Back  Forward

DataLudi.ListCellEditor.partialMatch  property

true로 지정하면 초성만 입력된 문자의 경우 초성으로만 비교해서 찾아간다. 

기본값은 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