fires after a cell is selected
data | object | the selected object |
preserve | boolean | indicates whether the previous selection state should be saved |
some.attachEvent("onAfterSelect", function (data, preserve){
//... some code here ...
});
If multiselect mode is enabled, the event will fire:
In each case, the ID of the newly selected item be passed to the event.
To get the IDs of currently selected items, you can use a combination of onSelectChange and the selectRange method.