版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/inforstack/article/details/46426497
compondStockHelp : function(){
<span style="white-space:pre"> </span>var thisPanel = this;
if (this.helpForm == null) {
this.helpForm = Ext.create('widget.window', {
title : "帮助文档",
closable : true,
closeAction : 'hide',
modal : true,
width : 600,
resizable : false,
minWidth : 400,
height : 550,
layout : {
type : 'fit',
padding : 5
},
items : [{
xtype:'panel',
html:"<iframe width=100% height=100% src='/resource/help/HelloWorld.html'/>"
}]
});
HTML效果图.
引入之后效果图