1

グリッドと基本的なフィルタリングを作成して、反復などを絞り込むことができました。理想的には、これを 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()
         });
     }
 });
4

1 に答える 1