Ext Grid checkBox 监听事件

来源:互联网 发布:微博评论屏蔽淘宝链接 编辑:程序博客网 时间:2024/06/05 11:16
  1. new Ext.grid.CheckboxSelectionModel({  
  2.     listeners:{  
  3.       'rowselect':function(sm,rowIndex,record){  
  4.         console.log('rowselect',rowIndex)  
  5.       },  
  6.       'rowdeselect':function(sm,rowIndex,record){  
  7.         console.log('rowdeselect',rowIndex)  
  8.       },  
  9.       'selectionchange':function(sm){  
  10.         console.log('selectionchange',sm.getSelections().length);  
  11.       }  
  12.     }  
1 0
原创粉丝点击