我正在尝试Ext.application
在我们现有的网站模板中运行 ExtJS4。我们有一个div #content
,我想将应用程序放入其中以进行开发。如何将应用程序渲染到这个区域,而不是替换现有的 html 页面?
Ext.application({
name: 'HelloExt',
launch: function() {
Ext.create('Ext.container.Viewport', {
layout: 'fit',
// renderTo: Ext.Element.get('#content') doesn't work
items: [
{
title: 'Hello Ext',
html : 'Hello! Welcome to Ext JS.'
}
]
});
}
});