我正在努力将故事计数所占的百分比纳入我建立的看板(投资组合项目的看板)。我曾尝试过工作:
https://github.com/RallyApps/PortfolioKanban
但我无法弄清楚如何将故事计数方面的百分比纳入其中。有人知道一种简单的方法将其添加到每张卡片中吗?
答案 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',
//...