appsdk2 - Rally SDK 2 manually filter or specify rallycardboard columns displayed -


I am trying to create a simple rally cardboard app that displays the project as a card in the form of backlog stories. Does. Then allow drag / drop cards to set up the project. Code is attached

    If I specify 'project' as attribute, the board includes columns for all projects in the workspace. I children, or

  1. < P> Code a list of project columns. I have tried to manipulate columns, column config, context settings, but nothing creates the desired result.

      & lt ;! DOCTYPE html & gt; & Lt; Html & gt; & Lt; Top & gt; & Lt; Title & gt; Cardboard example & lt; / Title & gt; & Lt; Script type = "text / javascript" src = "/ apps / 2.0rc2 / sdk.js" & gt; & Lt; / Script & gt; & Lt; Script type = "text / javascript" & gt; Launch: function () {if (cardboard config) {cardBoardConfig.destroy ()}} var cardBoardConfig = Rally.onReady (function () {Ext.define ('ProjBoard', {extension: 'Rally.app.App', Launch: {Xtype: 'Rallycardboard', type: ['Use R Story'], Feature: 'Project', fieldToDisplay: 'Project', cardConfig: {Areas: ['Project', 'Parent', 'Recurrence']}, StoreConfig: {filter: [property: 'ScheduleState', operator: '& lt;', value:} {property 'in progress': 'repetition', operator: '=', value: ''}], sort: [[Property: 'rank', direction: 'DESC'}], // current project Specify the kit and scoping references: this.getContext (). GetDataContext ()}} this.add (cardBoardConfig);}}); Rally Launch app ('Prosboord', {name: 'Backlog project board'}); }); & Lt; / Script & gt; & Lt; Style type = "text / css" & gt; & Lt; / Style & gt; & Lt; / Head & gt; & Lt; Body & gt; & Lt; / Body & gt; & Lt; / Html & gt;  

You should be able to specify the column config :

  column: [{value: '/ project / 12345', columnHeaderConfig: {headerTpl: '{project}', headerData: {Project: 'Project 1 '}}}, // more columns ...]  

Comments