SMART datagrid v.1 > Classes > GridBase
It will be fired when SearchCellEditor requests the items with which will fill the list box.
In this event handler, it will call fillEditSearchItems to transfer the items.
var _names = ['aaa', 'bbb', ....];
grid.onEditSearch = function (grid, index, text) {
var items = _names.filter(function(str) {
return str.indexOf(text) == 0;
});
grid.fillEditSearchItems(index.column, text, items);
};