您现在的位置:首页 >> 前端 >> 内容

extfeildset折叠效果代码实现

时间:2018/6/26 16:24:42 点击:

  核心提示: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();
                    }
                }

效果

extfeildset折叠效果代码实现

extfeildset折叠效果代码实现

Tags:EX XT TF FE 
作者:网络 来源:Momo_Joann