w2ui网格,带列表和远程数据源的可编辑字段

时间:2015-05-07 16:03:50

标签: w2ui

我有W2UI网格列表字段:

{field: 'serial', caption: 'Serial', size: '100px', editable: { type: 'list', items: serials, showAll: true, match: 'contains' }, sortable: true, selected: {id: 1},
    render: function (record, index, col_index) {
         var html = this.getCellValue(index, col_index);
         return html.text || '';
    }
},

我想使用服务器中的数据来获取此列表单元格。但如果我尝试使用' url'参数我的列表仅在我输入一些charatcer时显示(它是一个过滤器)。如果我设置'项目'参数 - everething fine,当我点击字段时打开完整列表。有没有办法通过键入字符来使用带有列表字段和没有过滤器的远程源?

1 个答案:

答案 0 :(得分:0)

如果您使用url参数并且不想过滤结果,则应设置minLength:0,以便立即显示整个列表。