On Row Select

is it possible in the onrowselect method (or similar) to get the previous row that was selected before they clicked a new row?



thanks

Grid has additional event - onBeforeSelect which provides two params - row which will be selected, row which was selected before
Please beware that this event is blocable, so you need to return true from it, to confirm selection.

grid.attachEvent(“onBeforeSelect”,function(new_id,previous_id){
    return true;
});

ok thanks very much