EXTJS - Grids onRowDblClick handling function


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /**
  2. * grids onRwDoubleClick
  3. */
  4. var onRowDblClick = function (sm, rowIdx, e) {
  5.  
  6. console.log('HO.Class.CRUD.onRowDblClick');
  7. console.log(this);
  8. console.log(this.ownerCt);
  9. console.log(sm);
  10. console.log(rowIdx);
  11. console.log(e);
  12. var rec = this.getStore().getAt(rowIdx);
  13. this.ownerCt.managerRef.show('ala','makota');
  14. } // eo function onRowDblClick
  15.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.