I'm creating a custom grid where I want to display the portfolio items that are features and also the parent of the feature (which would be the portfolio item initiative). Is there any way I can do this?
var portfolioItemStore = Ext.create('Rally.data.wsapi.Store', {
model: 'Portfolio Item',
autoLoad: true,
listeners: {
// ...
},
filters: [
{
property: 'PortfolioItemType.Name',
value: 'Feature'
}
],
fetch: ['Name', 'PortfolioItemType', 'Parent'] // possible edit here
});
You were on the right track. This is a basic grid to get you what you want:
More grid examples can be found within the SDK documentation: https://rally1.rallydev.com/docs/en-us/saas/apps/2.1/doc/index.html#!/example