在w2ui网格库中,以下列定义将在该列下的所有单元格上显示列表框。
columns: [..
editable: { type: 'list', items: people, showAll: true },
render: function (record, index, col_index) {
var html = this.getCellValue(index, col_index);
return html || '';
}
但是我只希望在一个单元格上有列表框。在同一列的另一个单元格上,我可能具有DATE或TEXT字段。