当纸板仅显示功能时,我没有问题向我的纸板中的功能显示父级:
cardConfig: {
xtype: 'rallycard',
listeners: {
fieldclick : function(field, card) {
_loadDetails(card);
}
},
fields: [
'Name',
// 'Parent' - either one of these ways works
{
name: 'Parent',
fetch: ['Parent'],
renderTpl: Ext.create('Ext.XTemplate', 'Parent: {Parent.Name}')
}
]
},
但是,当我的看板同时显示功能和汇总时,父信息不会显示在卡片上。我已经尝试有条件地设置它,或者使用渲染器而不是 renderTpl(渲染器从未被调用) - 我无法在 API 文档中找到正确执行此操作的方法。