extjs提供了方便的表格组件grid供使用,但是默认情况下表格中的文本是不能被选中的,自然也是无法复制的。
而选择复制文本的需要也是很平常的,于是我们就需要自己动手来解决这个问题,实现extjs的grid文本选择复制功能。
说明一点,文中所列出的代码片断都是在当前ext 4.0.2a版本下的,其它版本未做测试,请自行斟酌。
首先自定义一下样式,来覆盖默认的css样式:
复制代码 代码如下:
复写extjs的table类,阻止鼠标选择文本的就是这个unselectable
复制代码 代码如下:
/**
* override the table class
*/
ext.override(ext.view.table, {
afterrender : function() {
var me = this;
me.callparent();
me.mon(me.el, {
scroll : me.firebodyscroll,
scope : me
});
if (!me.featuresmc && (me.featuresmc.findindex('ftype', 'unselectable') >= 0)) {
me.el.unselectable();
}
me.attacheventsforfeatures();
}
});
然后再自定义一个feature,启用文本选择功能,通过替换取消unselectable样式,同时增加x-selectable样式
复制代码 代码如下:
/**
* define the select feature
*/
ext.define('myext.grid.selectfeature', {
extend : 'ext.grid.feature.feature',
alias : 'feature.selectable',
mutatemetarowtpl : function(metarowtpl) {
var i, ln = metarowtpl.length;
for (i = 0; i tpl = metarowtpl[i];
tpl = tpl.replace(/x-grid-row/, 'x-grid-row x-selectable');
tpl = tpl.replace(/x-grid-cell-inner x-unselectable/g, 'x-grid-cell-inner');
tpl = tpl.replace(/unselectable=on/g, '');
metarowtpl[i] = tpl;
};
}
});
现在可以声明一个selectfeature了
var selectfeature = ext.create('myext.grid.selectfeature');
需要启用文本选择的表格,在创建时添加这个feature就可以了
复制代码 代码如下:
ext.create('ext.grid.panel', {
title : 'grid example',
store : gridstore, // define before
width : 600,
height : 300,
features : [selectfeature],
columns : [{
text:'name',
dataindex:'name'
}]
// other code
}