当您双击窗口小部件时会抛出

时间:2017-03-28 12:14:35

标签: extjs widget extjs6 focusable

当我双击窗口小部件时抛出:

  

未捕获的TypeError:无法读取未定义的属性“focusable”

我有一个带有widget列的网格

text:'blabala'
flex: 1.8,
xtype: 'widgetcolumn',
dataIndex: 'attachment',
stopSelection: false,

widget: {
            xtype: 'panel',
            layout: 'hbox',
            padding: 5,
            border: 0,
            bodyStyle: 'background:transparent',
            flex: 1,
            header: false,
            items: [{
                xtype: 'panel',
                flex: 1,
                bodyStyle: 'background:#d7d7d7;border-radius:16px',
                layout: 'hbox',
                items: [

                    {
                        xtype: 'button',
                        cls: 'attach-btn-divers',
                        padding: '10 0 10 5',
                        textAlign: 'left',
                        flex: 1,
                    }, {
                        xtype: 'button',
                        cls: 'attach-btn-divers attach-btn-divers-cancel',
                        padding: '10 5 10 0',
                        iconCls: 'x-fa fa-close',
                        handler: 'onDetachDiver',
                        width: 20,
                    },
                ]
            }, {
                xtype: 'combolabel',
                forceSelection: true,
                store: {
                    type: 'divingAttachmentStore'
                },
                displayField: 'value',
                valueField: 'value',
                autoSelect: true,
                queryCaching: false,
                queryMode: 'remote',

                listConfig: {
                    loadMask: false
                },
                flex: 1,
                listeners: {
                    specialkey: 'onEditAttachment',
                    focusLeave: 'onFocusLeaveAttachment',
                    beforequery: 'onBeforeQueryAttachment'
                }
            },
            ]

        },
        onWidgetAttach: 'onWidgetAttachAttachment',

编辑时,会显示组合

在普通视图中,会显示带按钮的面板

如果是空单元格,则组合显示为空文本。单击组合时,列表会丢失但出现错误

更新29.03.2017

如果删除了编辑插件,则没有错误。 转载: https://fiddle.sencha.com/#view/editor&fiddle/1t1v

1 个答案:

答案 0 :(得分:1)

解决。我为widgetcolumn

定义了一个空编辑器
 editor:{},

问题就消失了。