Rally Software

  • 1.  Display Color Issue in CA Rally Grid

    Posted Apr 18, 2018 11:04 AM

    Can anybody help me get Milestone and Displaycolor work in My grid filter? I am able to get Milestone and DisplayColor in filter box but they are not working. The filter is not applied to grid

    Thanks HSG

     

    var whiteListFields = ['Milestones', 'Tags', 'DisplayColor'];
    this.add({
       xtype: 'rallygridboard',
       context: context,
       modelNames: modelNames,
       toggleState: 'board',
       stateful: false,
       plugins: [{
          ptype: 'rallygridboardinlinefiltercontrol',
          inlineFilterButtonConfig: {
             stateful: true,
             stateId: context.getScopedStateId('filters'),
             modelNames: modelNames,
             inlineFilterPanelConfig: {
                quickFilterPanelConfig: {
                   defaultFields: ['ArtifactSearch'],
                   addQuickFilterConfig: {
                      whiteListFields: whiteListFields
                   }
                },
                advancedFilterPanelConfig: {
                   advancedFilterRowsConfig: {
                      propertyFieldConfig: {
                         whiteListFields: whiteListFields
                      }
                   }
                }
             }
          }
       },
       {
          ptype: 'rallygridboardfieldpicker',
          headerPosition: 'left',
          modelNames: modelNames,
          stateful: true,
          stateId: context.getScopedStateId('columns-example')
       },
       {
          ptype: 'rallygridboardactionsmenu',
          menuItems: [{
             text: 'Print...',
             handler: function () {
                this.down('rallygridboard').getGridOrBoard().openPrintPage({ title: 'Program Board' });
             },
             scope: this
          }],
          buttonConfig: {
             iconCls: 'icon-export'
          }
       }],
       cardBoardConfig: {
          plugins: [{
             ptype: 'rallyfixedheadercardboard'
          },
          {
             ptype: 'rallycardboardprinting'
          },
          columns: columns,
          attribute: 'Iteration',
          readOnly: true,
          rowConfig: {
             field: 'Project'
          }]
       },
       storeConfig: {
          fetch: ['Iteration', 'Name', 'StartDate', 'EndDate']
       }
    });



  • 2.  Re: Display Color Issue in CA Rally Grid

    Broadcom Employee
    Posted Apr 18, 2018 12:08 PM

    Hi HSG,

    The code is in a single horizontal line. I was unable to convert it to a more readable format. Will you be able to include your code perhaps from the original file with a more readable format?

     

    Thanks,

    Sagi