SMART datagrid v.1 > Classes > SearchCellEditor
The text length which should be entered before firing Item Request Event. If the length of text is greater than this value after searchDelay after the last key input, it will fire the event.
It transfers the list items to editor through GridBase.fillEditSearchItems function within event handler.
Defaults to 1.
var columns = [{
name: "CustomerID",
fieldName: "CustomerID",
editor: {
type: "search",
keyLength: 1,
searchDelay: 500
}
},
...
}];
grid.setColumns(columns);