关于extjs:在网格上实现beforeedit监听器

Implementing beforeedit listener on a grid我正在尝试在我的表中实现 beforeedit 侦听器。我想在允许用户对单元格做某事之前做一些检查。[cc] Ext.defin...

我正在尝试在我的表中实现 beforeedit 侦听器。我想在允许用户对单元格做某事之前做一些检查。

1
2
3
4
5
6
7
8
    Ext.define('myGrid', {
        extend: 'Ext.grid.Panel',

        listeners: {
          beforeedit: function (e) {
            alert('hi')
          },
        }

当我尝试编辑单元格时,不会调用此警报(..)。为什么这不进入听众?如果我在 Internet 上查看,有很多 Ext.grid.Panel 的示例与 beforeedit.

无论如何,我尝试使用 Ext.grid.EditorGridPanel 进行扩展。

1
2
3
4
5
6
7
8
    Ext.define('myGrid', {
        extend: 'Ext.grid.EditorGridPanel',

        listeners: {
          beforeedit: function (e) {
            alert('hi')
          }
        }

现在我得到了一个典型的 extjs 方式的模糊错误:

http://jsfiddle.net/S8Tgm/13/

我做错了什么?为什么要在普通网格上使用 EditorGridPanel?是否适用于类似 Excel 的属性?

编辑:是的。抱歉,我忘了在"听众"中添加 beforeedit。问题仍然存在。


1
2
3
4
5
6
7
8
9
listeners: {
    beforeedit: function (e) {
        alert('hi')
    }
},
plugins: [
  Ext.create('Ext.grid.plugin.RowEditing', { //or even better - use ptype here
     clicksToEdit: 1
})],

http://jsfiddle.net/S8Tgm/12/ - 工作小提琴

你错过了一些东西:

网格没有 \\'beforeedit\\' 事件。您需要在网格中添加一个编辑器示例在这里

事件应该放在"listeners"对象中

(在使用 stackoverflow 标记时遇到了大麻烦)

相关讨论

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

ExtJS, SenchaTouch - FormPanel can't load values from a store?如何将值从商店加载到表单面板中?我在这里构建了一个完整的示例。我不确定为什么我的表单...
Sencha Touch - Offline Application with offlineStorage synced to a online store. Fetch online data on demand and add to offlineStoreage我正在开发一...
ExtJS 3.x DateField menuListeners show/hide每当我的 DateField 上发生显示/隐藏事件时,我都会尝试调用一些函数。我相信这些应该在菜单小部件打开和关闭时...
Resolving Dirty Flag in Ext.grid.Panel cell在 Ext JS 网格中,我正在编辑单个单元格。在其中一列中,我有一个触发 Save 事件的 Save 按钮。如何删除已编辑...
Ext.ux.form.field.DateTime questions我创建了一个 Ext.ux.form.field.DateTime 插件,但这里有一些问题:如果我不设置宽度/高度,则工具栏中的 DateTime 丢...