SDK2 Rally网格非常强大且灵活,但我遇到了一些重大问题:
这些是近期路线图吗?有没有解决方法?
答案 0 :(得分:1)
1)PercentDone工具提示应该有效。当您将鼠标悬停在网格中的PercentDone栏上时,是否在控制台中出现任何脚本错误?
2)创建网格时,您应该能够在配置中将enableRanking设置为true:http://developer.rallydev.com/apps/2.0p5/doc/#!/api/Rally.ui.grid.Grid-cfg-enableRanking
(没有必要在网格中包含Rank字段以启用此功能)
3)目前没有像Backlog页面那样显示友好排名的内置方式。您必须为Rank列实现自定义渲染器:
columnCfgs: [
'FormattedID',
'Name',
{
text: 'Rank',
dataIndex: 'Rank',
renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
//Use this info to render the friendly rank
return rowIndex + 1;
}
}
]
请注意,上述内容仅在按Rank排序网格时才有效 - 它更多是如何指定自定义渲染器的示例。