我已经能够创建一个网格和基本过滤来缩小迭代等。理想情况下,我想通过 html/confluence 运行它,所以理想情况下我需要设置过滤器,以便我可以过滤父项和项目。在 Rally 仪表板中测试这个,我仍然只在我所在的项目中工作。我如何使我的过滤工作,以便我在 Rally 中的项目明智的位置无关紧要,或者我是否使用我的api 密钥。
谢谢!标记
Ext.create('Rally.data.wsapi.TreeStoreBuilder').build({
models: ['userstory'],
autoLoad: true,
enableHierarchy: true,
filters: [{property: 'Iteration.Name',
operator : '=',
value : 'March'},
{property: 'Project.Parent.Name',
operator : '=',
value : 'Synergy'},
{property: 'Project.Name',
operator : '=',
value : 'Condor'}
]
}).then({
success: function(store) {
Ext.create('Ext.Container', {
items: [{
xtype: 'rallytreegrid',
columnCfgs: [
'DisplayColor',
'Name',
'ScheduleState',
'Blocked',
'TaskEstimateTotal',
'TaskRemainingTotal',
'Owner',
'Notes'
],
store: store
}],
renderTo: Ext.getBody()
});
}
});