Кнопка в сетке свойств - PullRequest
       17

Кнопка в сетке свойств

0 голосов
/ 13 ноября 2018

Я пытаюсь создать какую-то кнопку в Property Grid, которая открыла другое окно.

Вот сетка:

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 не является функцией".Как я могу решить эту проблему?

...