Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Having trouble showing parent feature of user stories and sorting by that same parent field. Here's my code. I see empty value in Parent column unless the parent is another user story. And I am not able to sort by Parent field.

Your help would be greatly appreciated!

Thanks!

<script type="text/javascript">
        Rally.onReady(function() {
            Ext.define('CustomApp', {
                extend: 'Rally.app.App',
                componentCls: 'app',

                items: [
                    {
                        xtype: 'container',
                        itemId: 'iterationFilter'
                    },
                    {
                        xtype: 'container',
                        itemId: 'grid',
                        width: 800
                    }
                ],

                launch: function() {
                    this.down('#iterationFilter').add({
                        xtype: 'rallyiterationcombobox',
                        cls: 'filter',
                        model: 'UserStory',
                        field: 'Iteration',
                        listeners: {
                            ready: this._onIterationComboBoxLoad,
                            select: this._onIterationComboBoxSelect,
                            scope: this
                        }
                    });
                },

                _onIterationComboBoxLoad: function(comboBox) {
                    this.iterationComboBox = comboBox;

                    Rally.data.ModelFactory.getModel({
                        type: 'UserStory',
                        success: this._onModelRetrieved,
                        scope: this
                    });
                },                  

                _getFilter: function() {
                    var filter = [];

                    filter.push({
                        property: 'Iteration',
                        operator: '=',
                        value: this.iterationComboBox.getValue()
                    });

                    return filter;
                },


                _onIterationComboBoxSelect: function() {
                    this._onSettingsChange();
                },

                _onSettingsChange: function() {
                    this.grid.filter(this._getFilter(), true, true);
                },

                _onModelRetrieved: function(model) {
                    this.grid = this.down('#grid').add({
                        xtype: 'rallygrid',
                        model: model,
                        columnCfgs: [
                            'FormattedID',
                            'Name',
                            'Plan Estimate',
                            'Parent',
                            'Schedule State',
                            'StoryType'
                        ],
                        storeConfig: {
                            context: this.context.getDataContext(),
                            filters: this._getFilter()
                        },
                        showPagingToolbar: true,
                        enableEditing: false
                    });
                }



            });
        });


      Rally.launchApp('CustomApp', {
          name: 'Defect Dashboard'
      });
</script>
share|improve this question

2 Answers

User Stories have two different fields for their Parent. If the Parent is another story it uses Parent. In the case where the Parent is a Portfolio Item like a Feature the parent will be called PortfolioItem.

You can see the fields on user story by looking at our webservice docs.

In your example you would have to change your column configs to include PorfolioItem

columnCfgs: [
                            'FormattedID',
                            'Name',
                            'Plan Estimate',
                            'PortfolioItem',
                            'Schedule State',
                            'StoryType'
                        ],
share|improve this answer
Thanks for the response. But it still does not work. I noticed that I should also change 'Plan Estimate' -> 'PlanEstimate' and 'ScheduleState' -> 'ScheduleState'. However, 'PortfolioItem' does not show up in my grid still. columnCfgs: [ 'FormattedID', 'Name', 'PlanEstimate', 'PortfolioItem', 'ScheduleState', 'StoryType' ] – Young Joo Jan 14 at 23:33
Actually, any field with "Sortable = False" cannot be displayed in this grid. Tested with a couple of other fields. And 'PortfolioItem' is NOT sortable. Does this mean that there's no way to show a list of user stories sorted by PortfolioItem/Feature? – Young Joo Jan 14 at 23:43
Looks like I have to add a renderer to extract out the name of portolioitem for display. – Young Joo Jan 15 at 1:53

I was at least able to show the name of feature for each user story. I am still having an issue to make it sortable though. :(

    <!DOCTYPE html>
    <html>
    <head>
        <title>Grid Example</title>

        <script type="text/javascript" src="/apps/2.0p4/sdk.js?wsapiVersion=1.38"></script>
        <script type="text/javascript">
                Rally.onReady(function() {
                    Ext.define('CustomApp', {
                        extend: 'Rally.app.App',
                        componentCls: 'app',

                        items: [
                            {
                                xtype: 'container',
                                itemId: 'iterationFilter'
                            },
                            {
                                xtype: 'container',
                                itemId: 'grid'
                                //width: 800
                            }
                        ],

                        launch: function() {
                            this.down('#iterationFilter').add({
                                xtype: 'rallyiterationcombobox',
                                cls: 'filter',
                                model: 'UserStory',
                                field: 'Iteration',
                                listeners: {
                                    ready: this._onIterationComboBoxLoad,
                                    select: this._onIterationComboBoxSelect,
                                    scope: this
                                }
                            });
                        },

                        _onIterationComboBoxLoad: function(comboBox) {
                            this.iterationComboBox = comboBox;

                            Rally.data.ModelFactory.getModel({
                                type: 'UserStory',
                                success: this._onModelRetrieved,
                                scope: this
                            });
                        },                  

                        _getFilter: function() {
                            var filter = [];

                            filter.push({
                                property: 'Iteration',
                                operator: '=',
                                value: this.iterationComboBox.getValue()
                            });

                            return filter;
                        },


                        _onIterationComboBoxSelect: function() {
                            this._onSettingsChange();
                        },

                        _onSettingsChange: function() {
                            this.grid.filter(this._getFilter(), true, true);
                        },

                        _onModelRetrieved: function(model) {
                            this.grid = this.down('#grid').add({
                                xtype: 'rallygrid',
                                model: model,
                                columnCfgs: [
                                    'FormattedID',
                                    'Name',
                                    'PlanEstimate',
                                    {
                                        text: 'Feature',
                                        dataIndex: 'PortfolioItem',
                                        renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
                                            if (value != null) {
                                                return value.Name;
                                            }
                                            return '';
                                        }
                                    },
                                    'ScheduleState',
                                    'StoryType'
                                ],
                                storeConfig: {
                                    context: this.context.getDataContext(),
                                    remoteSort: false,
                                    filters: this._getFilter()
                                },
                                showPagingToolbar: true,
                                enableEditing: false
                            });
                        }



                    });
                });


              Rally.launchApp('CustomApp', {
                  name: 'Defect Dashboard'
              });
        </script>

        <style type="text/css">
            .filter {
                float: left;
                margin: 5px 5px;
                vertical-align: middle;
            }
        </style>
    </head>
    <body></body>
    </html>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.