站内搜索:
首页 >> 前端 >> 内容
extfeildset折叠效果代码实现

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

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折叠效果代码实现

  • 上一篇:Node定时器实现详解
  • 下一篇:Bootstrap4Flex(弹性)布局的实例讲解
  • 返回顶部