我还在摸索Extjs的使用方法,我目前正在向UI显示文本数据,如下所示:
reference: 'agentLogGrid',
store: {
xclass: 'Ext.data.ChainedStore',
source: 'LogViewSource',
},
itemConfig: {
viewModel: true,
},
columns: [{
text: 'Timestamp',
xtype: 'templatecolumn',
tpl: '{timestamp}',
flex: 1,
}, {
text: 'Data',
xtype: 'templatecolumn',
tpl: '{data}',
flex: 1,
}],...
但文字无法反白显示,这表示我无法反白显示并复制,或选取并复制。当我将鼠标器移到上面时,指标会将它视为链接,但我无法反白显示或选取。如何只让**{data}**反白显示?
1条答案
按热度按时间tpgth1q71#
在经典的工具包中,你可以使用enableTextSelection属性。