带有编辑器列的 ExtJs TreeGrid。存在吗?

发布于 2025-01-06 19:01:30 字数 149 浏览 0 评论 0原文

我需要能够编辑树形网格的网格列中的值。简单地向列的配置添加编辑器并没有帮助。我正在使用 ExtJs4 树面板组件。

在此处输入图像描述

有什么想法吗?

I need an ability to edit values in a grid column of a treegrid. Simply adding a editor to the column's config didn't helped. I'm using ExtJs4 treepanel component.

enter image description here

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

情愿 2025-01-13 19:01:30

是的,它存在。

我建议使用最新版本,目前是 4.1 Release Candidate 1。

使用 Ext.Tree.Panel

添加一个网格编辑插件,如下所示:

  plugins:[
    Ext.create('Ext.grid.plugin.CellEditing', {
      clicksToEdit:2
    })
  ]

使至少一列可编辑,如下所示

editor:{
  xtype:'textfield'
}

您基本上是在组合以下内容:

http://docs.sencha.com/ext-js/4-0/#!/example/tree/treegrid.html

和这个:

http://docs.sencha.com/ext-js/4-0 /#!/example/grid/cell-editing.html

Yup, it exists.

I would recommend using the latest version, which at this time is 4.1 Release Candidate 1.

Use an Ext.Tree.Panel

add a Grid Editing plugin, like this:

  plugins:[
    Ext.create('Ext.grid.plugin.CellEditing', {
      clicksToEdit:2
    })
  ]

make at least one of the columns editable like this

editor:{
  xtype:'textfield'
}

You are basically combining this:

http://docs.sencha.com/ext-js/4-0/#!/example/tree/treegrid.html

and this:

http://docs.sencha.com/ext-js/4-0/#!/example/grid/cell-editing.html

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