簡體   English   中英

如何在一個選項卡中Ext.tab.Panel輸出兩個Ext.grid.Panel。 EXTJS

[英]How in one tab Ext.tab.Panel output two Ext.grid.Panel. Extjs

如何在Mytab1標簽的Ext.tab.Panel中加載兩個Ext.grid.Panel? 在app.js文件中,我得到Ext.tab.Panel:

Ext.application({
    requires: ['Ext.container.Viewport'],
    name: 'BookApp',
    appFolder: 'static/hello_extjs',
    controllers: ['Books'],
    launch: function () {
        Ext.create('Ext.container.Viewport', {
            layout: 'border',
            items: [
                {
                    region: 'north',
                    xtype: 'maintab'
                }
            ]
        });
    }
});

在Ext.tab.Panel中,我不知道如何正確形成將加載兩個Ext.grid.Panel的項目Mytab1:

Ext.define('BookApp.view.MainTab', {
    extend: 'Ext.tab.Panel',
    xtype: 'maintab',
    alias: 'widget.maintab',
    title: 'Панель вкладок',
    items: [
        {
            items:  //How to do what would be displayed two grids
                title: 'Mytab1',
            border: false,
            layout: 'fit',
            header: false
        },
        {
            items: 'booklist',//What exactly is necessary to point out that one grid
            title: 'Mytab2',
            border: false,
            layout: 'fit',
            header: false
        }
    ]
});

您必須將網格放入項目中,並從xtype屬性中調用它們: FIDDLE

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM