简体   繁体   English

Ext JS 4.2.1布局运行失败

[英]Ext JS 4.2.1 Layout run failed

I just want to create a layout where i've defined my custom application header.. and them some content beneath.. eg a border layout... 我只是想创建一个布局,我已经定义了我的自定义应用程序标题..以及它们下面的一些内容......例如边框布局......

Ext.define('app.view.Main', {
    extend: 'Ext.container.Container',
    requires:[
        'Ext.tab.Panel',
        'Ext.layout.container.Border',
        'Ext.layout.container.Anchor',
        'Ext.form.field.Text'
    ],

    xtype: 'app-main',

    layout: { type: 'anchor' },

    items: [
        { xtype: 'app-header' },
        {
            //xtype: 'container',
            layout: 'border',
            items: [{
                region: 'west',
                xtype: 'panel',
                title: 'west',
                width: 150
            }, {
                region: 'center',
                xtype: 'tabpanel',
                items: [{ ...

this code is always returning the error Layout run failed... When i change the layout of my second item which should be a border it works.. Somehow it doesnt get along with the border layout... 这段代码总是返回错误布局运行失败...当我改变我的第二个项目的布局,它应该是一个边框,它的工作..不知何故,它不与边框布局相处...

Can someone tell me why? 有人可以告诉我为什么吗? A hint for a solution would be nice too :) I am an ext js layout newb :( 一个解决方案的提示也很好:)我是一个ext js布局newb :(

To create a header with a top header: 要创建带有顶部标题的标头:

new Ext.container.Viewport({
    layout: {
        type: 'vbox',
        align: 'stretch'
    },
    items: [{
        xtype: 'app-header'
    }, {
        flex: 1,
        layout: 'border',
        xtype: 'container',
        items: [] // border stuff
    }]
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM