Documentation

onStructureUpdate

fires when structure of datatable was changed ( column added, hidden or reconfigured )

void onStructureUpdate(){ ... };

Example

mydata.attachEvent("onStructureUpdate", function(){
    webix.message("Grid was updated");
})

Back to top