Skip to content

onSelectChange

fires when selection is changed in a DataGrid

function onSelectChange(): void
webix.grid({
on: {
onSelectChange: function(){
var text = "Selected: " + grid.getSelectedId(true).join();
document.getElementById('testB').innerHTML = text;
}
}
});

also check the next samples:

The event doesn’t provide any details about changes, it just informs that they have happened.

Articles

API