首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

extjs 4.0.7 grid复制有关问题

2012-08-26 
extjs 4.0.7 grid复制问题在百度上搜过来的,不知道原来的出处,可以解决ext 4.0.7的grid复制问题.x-grid-ce

extjs 4.0.7 grid复制问题
在百度上搜过来的,不知道原来的出处,可以解决ext 4.0.7的grid复制问题

.x-grid-cell, .x-grid-row, .x-selectable, .x-selectable *{-moz-user-select: -moz-all !important;-khtml-user-select: text! important ;-webkit-user-select: text! important ;   }


Ext.view.TableChunker.metaRowTpl = [            '<tr {[this.embedRowAttr()]}>',            '<tpl for="columns">',            '<td {{id}-tdAttr}><div style="{{id}-style}; text-align: {align};">{{id}}</div></td>',            '</tpl>',            '</tr>'        ];Ext.core.Element.prototype.unselectable = function() {            var me = this;            if (me.dom.className.match(/(x-grid-table|x-grid-view)/)) {                return me;            }            me.dom.unselectable = "on";            me.swallowEvent("selectstart", true);            me.applyStyles("-moz-user-select:none;-khtml-user-select:none;");            me.addCls(Ext.baseCSSPrefix + 'unselectable');            return me;        };

热点排行