我正在努力将故事计数完成的百分比纳入我建立的看板(投资组合项目的看板)。我尝试过以下工作:
https://github.com/RallyApps/PortfolioKanban
但我不太清楚如何合并故事计数方面的百分比。有人知道将其添加到每张卡片的简单方法吗?
我正在努力将故事计数完成的百分比纳入我建立的看板(投资组合项目的看板)。我尝试过以下工作:
https://github.com/RallyApps/PortfolioKanban
但我不太清楚如何合并故事计数方面的百分比。有人知道将其添加到每张卡片的简单方法吗?
PortfolioKanbanApp.js 中有两个步骤引用 PercentDoneByStoryCount:
config: {
defaultSettings: {
fields: 'PercentDoneByStoryCount'
}
},
和
_attachPercentDoneToolTip:function (cardboard) {
Ext.create('Rally.ui.tooltip.PercentDoneToolTip', {
target:cardboard.getEl(),
delegate:'.percentDoneContainer',
percentDoneName: 'PercentDoneByStoryCount',
//...