我正在尝试在最初渲染网格后更改附加到w2ui网格的可编辑字段内组合框上的“项目”数组。

为了演示我的问题,我在这里设置了一个来自“网格内联编辑”演示的jsfiddle:

http://jsfiddle.net/8dkdoc4p/5/

由于出现了一些方框,说我必须包括代码(为什么?),从概念上讲,这就是我要尝试的操作。请注意,除非您看过以下网格演示,否则这没有太大意义:http://w2ui.com/web/demos/#!grid/grid-21

function alterComboBox() {
   people.push({ id: myid, text: "ID " + myid});
   myid++;
   w2ui['grid'].refresh();
}


这个想法是在运行时为组合框添加另一个项目,并使网格实际将新项目显示为另一个选项。

提前致谢!

最佳答案

更改记录后,必须将全局记录“人员”重新分配给w2ui网格列。

如果是“选择”字段,则还必须调用render()方法。

http://jsfiddle.net/8dkdoc4p/8/

var myid = 22;
function alterComboBox() {

    people.push({ id: myid, text: "ID " + myid});
  myid++;
  w2ui['grid'].getColumn('list').editable.items = people;
  w2ui['grid'].getColumn('combo').editable.items = people;
  w2ui['grid'].getColumn('select').editable.items = people;
  w2ui['grid'].getColumn('select').render();
  //w2ui['grid'].refresh(); // no need!
}

09-11 00:31