TreeStoreBuilder的过滤器

时间:2016-03-28 18:14:15

标签: rally

我刚刚开始尝试为Rally编写可用于汇总维基的脚本。我已经获得了基本的TreeStoreBuilder来处理我的数量的字段,但是我需要将它限制为迭代(理想情况下是最新的)以及硬编码项目/子项目,因为我期望需要它由于我希望在1个wiki页面上拥有来自不同项目的多个图表,因此受到限制。到目前为止,我的代码在下面..

谢谢! 标记

enter code here
Ext.create('Rally.data.wsapi.TreeStoreBuilder').build({
     models: ['userstory'],
      autoLoad: true,
      enableHierarchy: true
  }).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()
         });
     }
 });