I have a grid with: selectable: "row"
When I bind a change event to the grid it will fire each time I click on the row, even if it is the same row. So the selected row is not actually changing, but the event keeps firing anyways. The same thing happens if I programmatically select the row using the select method.
I would rather the change event only fire when when the selection has actually changed rather than on every re-selection.
Otherwise, you might as well call the event "onSelect" rather than "change".
When I bind a change event to the grid it will fire each time I click on the row, even if it is the same row. So the selected row is not actually changing, but the event keeps firing anyways. The same thing happens if I programmatically select the row using the select method.
I would rather the change event only fire when when the selection has actually changed rather than on every re-selection.
Otherwise, you might as well call the event "onSelect" rather than "change".