So selecting grid row value is easy:
handler: function(widget, event){
rec = grid.getSelectionModel().getSelection()[0];
console.log(rec.get('amount') + rec.get("price"));
}
This way, when user interacts with grid it simply retrieves data from its scope,
my question is how to retrieve specific data from specific rows? Lets say user clicks on third row from the top, how to select data from third, second and firs row, or fourth and firs(random)? I belive data coming from store is not in array, so calling array position isnt a option, or? Is there something like getPosition()
but position of row(s)?
Any ideas?