dojo Datagrid过滤器选择,允许用户从列中的值列表中进行选择

时间:2019-02-05 23:31:59

标签: dojo dojox.grid.datagrid dojox.grid dijit.layout dojo.gridx

我使用的dojo datagrid包含2个列“ name”和“ age”,要求是在datagrid的“ name”列上提供过滤选项。因此,用户可以通过单击名称列的标题从值列表中搜索并选择他/她的名字。 是否需要在布局中设置相同的任何选项。 有人可以帮忙吗?

var layout = [
                          {field: "Name", name: "Name", width: '200px' },
                          {field: "Age", name: "Age", width: '100px' },

                          ];

            var resultStore = new ObjectStore({ objectStore:new Memory({ data: [],idProperty:"id" }) });

            var dGrid = new dojox.grid.DataGrid({
                store: resultStore,
                selectionMode: "none",
                autoHeight: true,
                structure: layout,
                sortInfo: 1,                        
                canSort: function(colIndex) {                       
                    return true;
                }                   
            });

0 个答案:

没有答案