0

我用 columnCfgs 的以下设置设置了一个 rallygrid 对象:

columnCfgs: [
    'FormattedID',
    'Name',
    'PlanEstimate'
]

这给了我一个很好的格式化链接到“FormattedID”字段中的 UserStory。问题是,我不喜欢列在页面上的布局方式,所以我将 FormattedID 列更改为:

{ text: 'ID', dataIndex: 'FormattedID', width: 60 }

这给了我正确的列间距,但字段文本不再直接链接到它引用的用户故事。如何更改列宽,同时保持良好的格式?

4

1 回答 1

0

您可以使用 FormattedIDTemplate 类来正确格式化链接:

{
    text: 'ID',
    width: 60,
    xtype: 'templatecolumn',
    tpl: Ext.create('Rally.ui.renderer.template.FormattedIDTemplate')
}

请注意,FormattedIDTemplate 类被标记为私有,它的接口可能会在 sdk 的未来版本中发生变化。

于 2012-07-30T14:41:46.033 回答