我在Rally app构建器中创建了一个数据存储和数据模型。我想在缺陷模型中显示Rally网格中的一些缺陷字段,我想使用Rally渲染器对它们进行格式化。在我的网格定义中,我有:
columnCfgs: [
{
xtype: 'templatecolumn',
text: 'ID',
width: 100,
tpl: Ext.create('Rally.ui.renderer.template.FormattedIDTemplate')
},
{
xtype: 'templatecolumn',
text: 'Creation Date',
tpl: Ext.create('Rally.ui.renderer.template.DateTemplate', {the: 'CreationDate'})
},
{
text: 'Name',
dataIndex: 'Name',
flex: 1
},
{
text: 'Schedule State',
xtype: 'templatecolumn',
tpl: Ext.create('Rally.ui.renderer.template.ScheduleStateTemplate',
{field: 'ScheduleState'}
)
}, ...
格式化的ID和名称显示没有问题,但不显示创建日期和计划状态字段。我无法弄清楚我做错了什么。如果我从这些字段中删除渲染器模板并只显示值,则会显示值。但渲染器模板由于某种原因不起作用。有什么建议?感谢。