如何将故事数量的百分比添加到纸板上

时间:2013-07-29 20:17:02

标签: rally

我正在努力将故事计数所占的百分比纳入我建立的看板(投资组合项目的看板)。我曾尝试过工作:

https://github.com/RallyApps/PortfolioKanban

但我无法弄清楚如何将故事计数方面的百分比纳入其中。有人知道一种简单的方法将其添加到每张卡片中吗?

1 个答案:

答案 0 :(得分:0)

PortfolioKanbanApp.js有两个步骤,其中引用了PercentDoneByStoryCount:

 config: {
            defaultSettings: {
                fields: 'PercentDoneByStoryCount'
            }
        },

_attachPercentDoneToolTip:function (cardboard) {
            Ext.create('Rally.ui.tooltip.PercentDoneToolTip', {
                target:cardboard.getEl(),
                delegate:'.percentDoneContainer',
                percentDoneName: 'PercentDoneByStoryCount',
            //...

enter image description here