我正在使用ExtJs 7-Modern不幸的是,在所有对象中,不能用手指选择文本,以通常的方式复制文本。你能告诉我这个功能有什么解决方案吗?
pexxcrt21#
默认情况下,大多数组件都不可由用户选择。将容器主体设置为用户可选,您可以用手指或鼠标选择文本。
xtype: 'container', userCls: 'ordersummary', style: { 'border': '1px solid black', 'padding': '5px', 'margin': '0 0 5px 0' }, // this is what makes it selectable. userSelectable: { bodyElement: 'text' },
请参阅Ext.Container的userSelectable配置。它基本上是设置user-select
1条答案
按热度按时间pexxcrt21#
默认情况下,大多数组件都不可由用户选择。
将容器主体设置为用户可选,您可以用手指或鼠标选择文本。
请参阅Ext.Container的userSelectable配置。它基本上是设置user-select