Flex AdvancedDatagrid 可编辑但不允许更改数据
我有一个高级数据网格,但我希望用户允许复制他们想要的一些行。当我使用属性editable
时,他们可以选择他们需要的文本,但他们也可以编辑它。我怎样才能防止这种情况发生?
我希望用户能够选择数据网格中的任何文本,但不允许他们更改网格的值。他们应该只被允许选择和复制(ctrl + c)。
I have an advanced datagrid, but I want users to allow to copy some lines they want. when I use the property editable
they are allowed to select the text they need, but they also are allowed to edit this. How can I prevent that?
I want users to be able to select any text in the datagrid, but they are not allowed to change the value of the grid. They should only be allowed to select and copy (ctrl + c).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能的解决方案之一是:
创建扩展
AdvancedDataGridItemRenderer
的SelectableItemRenderer
。在类构造函数中写入:将
SelectableItemRenderer
设置为网格项渲染器。One of possible solitions is:
Create
SelectableItemRenderer
that extendsAdvancedDataGridItemRenderer
. In class constructor write:Set
SelectableItemRenderer
as grid item renderer.问题解决了。
我已将一个文本输入组件放入 advanceDataGridColumn 的项目编辑器中,并且成功了!
只需将 AdvancedDatagrid editable 设置为 true,将 textinput editable 设置为 false!
Problem solved.
I've put an text input component in the item editor of the advancedDataGridColumn and that worked!
Just set the advancedDatagrid editable true and on the textinput editable false!