我使用的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;
}
});