解决extjs grid文字不能选中的问题

 

Css代码 
  1. .x-selectable, .x-selectable * {     
  2.  -moz-user-select: text!important ;     
  3.  -khtml-user-select: text!important ;     
  4. }  

Javascript代码 
  1. // enable grid cell to be selected in chrome(x-selectable)/firefox(x-selectable)/IE(unselectable)  
  2. Ext.grid.GridView.prototype.cellTpl = new Ext.Template(Ext.grid.GridView.prototype.cellTpl.html  
  3.         .replace('unselectable="on"''').replace('class="',  
  4.                 'class="x-selectable '))  

 

你可能感兴趣的:(ExtJs)