我需要拉出属于用户故事的变更集以及构建变更集。
// load the data
_loadData : function(loadUi) {
console.log('load data started');
Ext.create('Rally.data.wsapi.Store', {
model : ['User Story','Build']
autoLoad : true,
listeners : {
load : function(myStore, data, success) {
return this._processChangesetData(myStore, data, loadUi);
},
scope : this
},
fetch : [ 'FormattedID', 'Name', 'ScheduleState','Changesets', 'Iteration', 'Release' ,'Number', 'Status','Uri',]
});
},