我尝试了很多方法来解决这个问题,但无论如何都不起作用。
最后,我查找了Ext.panel.Panel的所有属性,找到了一个名为 的属性collapseMode。所以我添加collapseMode:'header'到面板中,其中的数据htmleditor不再丢失。
我的代码:
xtype: 'panel',
region: 'south',
itemId: 'remarkWrap',
height: 140,
//style: 'margin-top:10px;',
layout: 'fit',
title: 'title',
collapsible: true,
plain: true,
hideMode: 'offsets',
resizable:{
handles:'n',
minHeight: 140,
maxHeight:500,
pinned:true,
},
titleCollapse : true,
collapseMode:'header',
items: [{
xtype: 'htmleditor',
itemId: 'remarkInput',
labelAlign: 'top',
inputAttrTpl: "spellcheck='false'",
readOnly : true
}]