W2ui网格单元格编辑-列列表类型错误?

时间:2019-02-10 19:28:03

标签: w2ui

乍看之下一切正常。我有一个带有大量列的网格。而且有些列不可见,它们在右侧,滚动滚动会显示它们。因此,一些最重要的侧栏是“列表”类型,用于编辑。

如果要进行编辑-它会立即闪烁并刷新网格...如果我将必要的列移至可见区域,则可以全部编辑。

我尝试了w2ui-master演示。 grid21.html-内联编辑。添加了一些列,最后一个“列表”类型的列将不可见,在右侧,可以通过srcoll访问:

        { field: 'text1', caption: 'text1', size: '250px', sortable: true, resizable: true, editable: { type: 'text' } },
        { field: 'text2', caption: 'text2', size: '280px', sortable: true, resizable: true, editable: { type: 'text' } },
        { field: 'text3', caption: 'text3', size: '280px', sortable: true, resizable: true, editable: { type: 'text' } },
        { field: 'list1', caption: 'list1', size: '150px', sortable: true, resizable: true, 
            editable: { type: 'list', items: people, showAll: true },
            render: function (record, index, col_index) {
                var html = this.getCellValue(index, col_index);
                return html || '';
            }
        },

在此扩展示例中,您会看到我的问题...水平滚动后,列表中的编辑不起作用... :(

如何解决这个问题?

预先感谢...

0 个答案:

没有答案