JS 代码:Ext.onReady(function(){ myPanel = new Ext.Panel({ id:‘id‘,
title:‘名字‘, width:600, autoheight:true, closable:true, collapsible:true, html: ‘‘, renderTo:myDiv }); });
上面是JS代码,另外还要定义HTML代码,指定<div>位置。
HTML 代码: <div id="myDiv"></div>
刷新机制:
panel没有reload()函数,有重新加载引用页的load()函数,中间需要穿参数。
刷新的话用Ext封装的另一个函数里的refresh,如下:
1 myPanel.getUpdater().refresh();
ExtJS 在线中文API文档 地址:
http://extjs-doc-cn.github.io/ext4api/#!/api/Ext.panel.Panel
时间: 2024-10-25 02:00:15