核心提示:extfeildset折叠效果代码实现new Ext.form.FieldSet({title : 更多内容...点击伸缩,collapsible : true,collapsed : true,ti...
extfeildset折叠效果代码实现
new Ext.form.FieldSet({
title : '更多内容...点击伸缩',
collapsible : true,
collapsed : true,
titleCollapse : true,
listeners : {
collapse : function() {
Ext.getCmp('myquery').setHeight(165);
Ext.getCmp('viewPort').doLayout();
},
expand : function() {
Ext.getCmp('myquery').setHeight(270);
Ext.getCmp('viewPort').doLayout();
}
}
效果




