我有一个呈现动态标题的页面。当我使用HeaderCfg将标题更改为h2时,它是在span标记中嵌套元素,如下所示
<h2 class=" x-unselectable">
<span class="x-panel-header-text">This is Title</span>
</h2>
预期:
<h2 class=" x-unselectable x-panel-header-text">This is Title</h2>
代码:
myForm = new Ext.FormPanel({
title : Orginal.orginalTitle.get('get-title'),
headerCfg: {
tag: 'h2',
},
id : 'title-field',
});
版本:3.4.0
1条答案
按热度按时间htrmnn0y1#
您可以首先将标题设置为:
结合面板替代: