Ext.onReady(function(){
var vp= new Ext.Viewport({
    layout: 'border',
    items: [{
        region: 'north',
        html: '<h1 class="x-panel-header">Page Title</h1><br/><br/><br/>',
        height: 300,
        border: false,
        margins: '0 0 5 0',
   monitorResize:true,
collapseMode:'mini', 
collapsible: true,
        id:'up',
        split:true,
        items:[{
         xtype:'button',
         text:'保存'
         }]
     }, {
        region: 'center',
        name:'down',
        xtype: 'panel',
        items: [{
            title: '测试',
            height:300
        }]
    }]
});
});小弟因为项目中用到ext,第一次使用。
我怎么才能获取得到 up,down的高度。  点击保存的时候保存当前up down的高度。关闭页面再次打开 怎么从cookie里面初始化up down的高度...在线等.