html – 在div中渲染Ext.application

前端之家收集整理的这篇文章主要介绍了html – 在div中渲染Ext.application前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在我们现有的网站模板中运行ExtJS4 Ext.application。我们有一个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.'
                }
            ]
        });
    }
});

解决方法

您需要使用除Ext.container.Viewport之外的其他容器。由定义器Ext.container.Viewport将始终占据整个浏览器窗口。

从文档:

The Viewport renders itself to the document body,and automatically sizes itself to the size of the browser viewport and manages window resizing. There may only be one Viewport created in a page.

只需使用Ext.panel.Panel

Ext.application({
    name: 'HelloExt',launch: function() {
        Ext.create('Ext.panel.Panel',renderTo: Ext.get('content')
            items: [
                {
                    title: 'Hello Ext',html : 'Hello! Welcome to Ext JS.'
                }
            ]
        });
    }
});
原文链接:https://www.f2er.com/html/233128.html

猜你在找的HTML相关文章