0

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

https://github.com/RallyApps/PortfolioKanban

但我不太清楚如何合并故事计数方面的百分比。有人知道将其添加到每张卡片的简单方法吗?

4

1 回答 1

0

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

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

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

在此处输入图像描述

于 2013-07-30T20:24:59.563 回答