onCollectValues

срабатывает после сбора значений из колонки datatable и сохранения их в коллекцию опций для редактора или фильтра

void onCollectValues(string id,object data);
idstringID колонки
dataobjectобъект с опциями

Example

datatable.attachEvent("onCollectValues", function(id, data){
    if (data.values[0].value == "")
    data.values[0].value = "Select something";
});

Related samples

Details

Assuming you need to filter data via a dedicated popup. Datatable collects the necessary values and populates the popup with them. When all values are colleceted the onCollectValues event is fired.

Наверх
If you have not checked yet, be sure to visit site of our main product Webix javascript framework and page of javascript excel reader product.