Можно ли отфильтровать элемент PortfolioItem, используя только имя вехи? Например, как бы я фильтровал MMF, используя имя тега Milestone.
var mmfFilter = Ext.create('Rally.data.wsapi.Filter', {
property : 'Milestone',
operator : '=',
value : milestoneName // String of the name of the milestone tag
});
Ext.create('Rally.data.wsapi.Store', {
model: 'PortfolioItem/MMF',
autoLoad: true,
filters : mmfFilter,
listeners: {
load: function(myStore, myData, success) {
console.log('MMFs with this milestone tag name', myData); // prints null
},
scope: this
},
fetch: ['CreationDate','FormattedID', 'Name', 'Parent']
});