grid row select event
Filed Under mercialleasing.com |
How do I capture click event on the link before row select?
grid.on({'celldblclick': {scope: this, fn: gridRowClickListener}});
/**
* Grid Row Clicked.
*/
var gridRowClickListener =function(theGrid, rowIndex, columnIndex, event) {
// only one item will be considered selected here.
var rows = sm.getSelections();
// Check column, execute link, ETC
};
thanks for the reply.
i solved this by overriding handlemousedown event of rowselectionmodel
#If you have any other info about this subject , Please add it free.# |