Reputation: 2196
Why rowclick
have a record
parameter to get the data from the clicked row and rowdblclick
have not?
rowdblclick : function(grid, index, e){
},
rowclick: function(grid, record, tr, rowIndex, e, eOpts) {
},
How can I get the record data from a double clicked row?
Upvotes: 0
Views: 1547
Reputation: 3480
Actually, according to the docs, the rowdblclick event passes a record param to the listener functions.
Upvotes: 1