Extjs 设置GridPanel单元格可选择高兼容写法

网上大部分都是这种

<style type= "text/css" >      
    .x-selectable, .x-selectable * {      
        -moz-user-select: text! important ;      
        -khtml-user-select: text! important ;
    -webkit-user-select: text!important;      
    }      
</style>  

上面写法目前只在高版本chrome浏览器上可以,360等google低版本浏览器上不行,经过研究

.x-grid3-row td, .x-grid3-summary-row td {
-moz-user-select:text;
-webkit-user-select:text;
}

这种写法才兼容性比较强。

原文地址:https://www.cnblogs.com/zhaogaojian/p/9931850.html