我有一个 rallygrid,我想为网格中的每一列创建一个组合框/文本搜索框。组合框将填充列的可能值。在组合框中选择一个值将相应地过滤网格。
Rally 中是否有内置方式来执行此操作?还是我手动创建所有内容并将其绑定在一起?
这是我的拉力网格:
this.add({
xtype: 'rallygrid',
store: customStore,
columnCfgs: [
{ text: 'Project', dataIndex: 'Project' },
{ text: 'Type', dataIndex: 'Type' },
{ text: 'State', dataIndex: 'State' }
]
});
我想创建 3 个可以搜索和过滤网格的组合框。