onSelectChange
fires when selection is changed in a DataGrid
function onSelectChange(): void
Example
Section titled “Example”webix.grid({ on: { onSelectChange: function(){ var text = "Selected: " + grid.getSelectedId(true).join(); document.getElementById('testB').innerHTML = text; } }});
also check the next samples:
Details
Section titled “Details”The event doesn’t provide any details about changes, it just informs that they have happened.
See also
Section titled “See also”Articles
API