1

使用 Sencha 测试在网格行中引用组合框。

给定类似的东西:

{
            text: "Select one",
            width: 110,
            editor: {
                field: {
                    xtype: 'combobox',
                    editable: true,
                    valueField: 'val',
                    displayField: 'name',
                    store: {
                        fields: ['val', 'name'],
                        data: [
                            [0, 'Option 1'],
                            [1, 'Option 2'],
                            [2, 'Option 3']
                        ]
                    }
                }
            }         
        }

到目前为止,我无法引用单击单元格后激活的组合。

这是使用单元编辑插件。

 plugins: {
        ptype: 'cellediting',
        clicksToEdit: 1
    },

所以我正在尝试使用 ST 从那里选择其中一个值。到目前为止还没有运气。我只能激活 cellediting 插件,执行以下操作:

this.grid().rowAt(index).cellAt(1).click();
4

1 回答 1

1

将 itemId 添加到组合框并执行此操作:

this.grid().rowAt(index).cellAt(1).click();
ST.comboBox('combobox[itemId=someValue]').visible().expand().setValue(1);

(这是指一个 PageObject)

于 2017-05-31T01:53:31.043 回答