属性网格中的按钮

时间:2018-11-13 08:00:16

标签: javascript button extjs propertygrid

我尝试在“属性网格”中创建一些按钮,这将打开另一个窗口。

这里的网格:

grid = new Ext.grid.PropertyGrid({
        title: 'Template',
        url: objectUrlAddress,
        id: 'propGrid',
        autoFill: true,
        autoHeight: true,
        width: 200,
        store: tableTempStore,
        width: 600,
        style: 'margin:0 auto;margin-top:10px;',
        source: {'Table': ''}
        customEditors:
        {'Table': new Ext.grid.GridEditor(new Ext.Button({
                text: 'Open table',
                handler: function ()
                {
                    new SdoWindow({
                        helpId: 'NavigationFolder',
                        title: 'Table',
                        width: 1200,
                        layout: 'fit',
                        height: 500,
                        resizable : false,
                        items: showTableInTemplate() //function for render another table
                    }).show();  
                }
        }))}
        });

但是在开始时我遇到一些错误“ this.field.setValue不是函数”。我该如何解决这个问题?

0 个答案:

没有答案