gpt4 book ai didi

html - 在 div 中渲染 Ext.application

转载 作者:技术小花猫 更新时间:2023-10-29 12:11:15 31 4
gpt4 key购买 nike

我正在尝试在我们现有的网站模板中运行 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', {
layout: 'fit',
renderTo: Ext.get('content')
items: [
{
title: 'Hello Ext',
html : 'Hello! Welcome to Ext JS.'
}
]
});
}
});

关于html - 在 div 中渲染 Ext.application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15437801/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com