Flex AdvancedDatagrid 可编辑但不允许更改数据

发布于 2024-11-18 09:41:55 字数 192 浏览 1 评论 0原文

我有一个高级数据网格,但我希望用户允许复制他们想要的一些行。当我使用属性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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

习惯成性 2024-11-25 09:41:55

可能的解决方案之一是:

  1. 创建扩展AdvancedDataGridItemRendererSelectableItemRenderer。在类构造函数中写入:

    公共函数 SelectableItemRenderer()
    {
        极好的();
    
        可选择=真;
    }
    
  2. SelectableItemRenderer设置为网格项渲染器。

One of possible solitions is:

  1. Create SelectableItemRenderer that extends AdvancedDataGridItemRenderer. In class constructor write:

    public function SelectableItemRenderer()
    {
        super();
    
        selectable = true;
    }
    
  2. Set SelectableItemRenderer as grid item renderer.

眼角的笑意。 2024-11-25 09:41:55

问题解决了。
我已将一个文本输入组件放入 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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文