onCollectValues

fires after datatable has collected options

void onCollectValues(string id,object data){ ... };

Parameters

idstringthe id of the column
dataobjectthe object that contains options

Example

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

Related samples

Back to top
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.