Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/user-interface/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
User interface Extjs布局项';秩序混乱_User Interface_Layout_Extjs - Fatal编程技术网

User interface Extjs布局项';秩序混乱

User interface Extjs布局项';秩序混乱,user-interface,layout,extjs,User Interface,Layout,Extjs,我试图在我的面板中显示以下项目: 我试图使用布局绝对,但像文本“设备选择”消失,它是唯一可见的按钮“ANZEGEN” 改用布局列,结果如下: 如何修复UI以显示第一张图片中的项目 这是我的代码: Ext.define('Traccar.view.chart.Chart', { extend: 'Ext.panel.Panel', xtype: 'chartView', requires: [ 'Traccar.view.chart.ChartCont

我试图在我的面板中显示以下项目:

我试图使用布局绝对,但像文本“设备选择”消失,它是唯一可见的按钮“ANZEGEN”

改用布局列,结果如下:

如何修复UI以显示第一张图片中的项目

这是我的代码:

Ext.define('Traccar.view.chart.Chart', {
    extend: 'Ext.panel.Panel',
    xtype: 'chartView',

    requires: [
        'Traccar.view.chart.ChartController'
    ],

    layout: 'column',

    //layout: 'absolute',

    controller: 'chart',

    defaults: {
        layout: 'form',
        xtype: 'container',
        defaultType: 'textfield',
    },

    tbar: {
        componentCls: 'toolbar-header-style',
        defaults: {
            xtype: 'button',
            disabled: true,
            tooltipType: 'title'
        },

        items: [{
            xtype: 'tbtext',
            html: 'Statistics',
            baseCls: 'x-panel-header-title-default'
        }, {
            xtype: 'tbfill',
            disabled: false
        }, {
            handler: 'showMap',
            reference: 'showMapButton',
            glyph: 'xf279@FontAwesome',
            stateful: false,
            enableToggle: false,
            disabled: false,
            tooltip: Strings.centerlisttomap
        }]
    },


    items: [{
        xtype: 'label',
        id: 'idOpen',
        maxWidth: Traccar.Style.formFieldWidth,
        reference: 'deviceField',
        text: 'Please select one device ',
        cls: 'statistic-panel-title-style'
    }, {
        items: [{
            fieldLabel: Strings.reportPeriod,
            reference: 'periodField',
            xtype: 'combobox',
            store: 'ReportPeriods',
            disabled: true,
            collapseOnSelect: true,
            editable: false,
            valueField: 'key',
            displayField: 'name',
            queryMode: 'local',
            value: 'today',
            listeners: {
                change: 'onPeriodChange'
            }
        }]
    }, {
        items: [{
            xtype: 'fieldcontainer',
            layout: 'vbox',
            reference: 'fromContainer',
            hidden: true,
            fieldLabel: Strings.reportFrom,
            items: [{
                xtype: 'datefield',
                reference: 'fromDateField',
                startDay: Traccar.Style.weekStartDay,
                format: Traccar.Style.dateFormat,
                value: new Date()
            }, {
                xtype: 'customTimeField',
                reference: 'fromTimeField',
                value: (new Date(new Date().setHours(0, 0, 0, 0)))
            }]
        }]
    }, {
        items: [{
            xtype: 'fieldcontainer',
            layout: 'vbox',
            reference: 'toContainer',
            hidden: true,
            fieldLabel: Strings.reportTo,
            items: [{
                xtype: 'datefield',
                reference: 'toDateField',
                startDay: Traccar.Style.weekStartDay,
                format: Traccar.Style.dateFormat,
                value: (new Date(new Date().setDate(new Date().getDate() + 1)))
            }, {
                xtype: 'customTimeField',
                reference: 'toTimeField',
                value: (new Date(new Date().setHours(0, 0, 0, 0)))
            }]
        }]
    }, {
        items: [{
            xtype: 'button',
            reference: 'clearButton',
            disabled: true,
            text: Strings.clearAllSelections,
            tooltipType: 'title',
            minWidth: 0,
            handler: 'onClearSeletcions'
        }]
    }, {
        items: [{
            xtype: 'button',
            disabled: true,
            reference: 'showButton',
            text: Strings.reportShow,
            tooltip: Strings.reportShow,
            tooltipType: 'title',
            minWidth: 0,
            handler: 'onShowClick'
        }]
    }],
});

您可以在第一个容器上使用布局
hbox
vbox
组合和一些
margin

我跳过了2个隐藏视图(不知道应该在哪里找到它们)

Ext.define('Traccar.view.chart.Chart', {
    extend: 'Ext.panel.Panel',
    xtype: 'chartView',

    requires: [
        'Traccar.view.chart.ChartController'
    ],

    layout: 'vbox',

    controller: 'chart',

    defaults: {
        layout: 'form',
        xtype: 'container',
        defaultType: 'textfield',
    },

    tbar: {
        componentCls: 'toolbar-header-style',
        defaults: {
            xtype: 'button',
            disabled: true,
            tooltipType: 'title'
        },

        items: [{
            xtype: 'tbtext',
            html: 'Statistics',
            baseCls: 'x-panel-header-title-default'
        }, {
            xtype: 'tbfill',
            disabled: false
        }, {
            handler: 'showMap',
            reference: 'showMapButton',
            glyph: 'xf279@FontAwesome',
            stateful: false,
            enableToggle: false,
            disabled: false,
            tooltip: Strings.centerlisttomap
        }]
    },


    items: [{
        margin: "20 0 20 0",
        xtype: 'label',
        id: 'idOpen',
        maxWidth: Traccar.Style.formFieldWidth,
        reference: 'deviceField',
        text: 'Please select one device ',
        cls: 'statistic-panel-title-style'
    }, {
        margin: "20 0 20 0",
        xtype: 'container',
        layout: 'hbox',
        items: [{
            fieldLabel: Strings.reportPeriod,
            reference: 'periodField',
            xtype: 'combobox',
            store: 'ReportPeriods',
            disabled: true,
            collapseOnSelect: true,
            editable: false,
            valueField: 'key',
            displayField: 'name',
            queryMode: 'local',
            value: 'today',
            listeners: {
                change: 'onPeriodChange'
            }
        }, {
            xtype: 'button',
            reference: 'clearButton',
            disabled: true,
            text: Strings.clearAllSelections,
            tooltipType: 'title',
            minWidth: 0,
            handler: 'onClearSeletcions'
        }, {
            xtype: 'button',
            disabled: true,
            reference: 'showButton',
            text: Strings.reportShow,
            tooltip: Strings.reportShow,
            tooltipType: 'title',
            minWidth: 0,
            handler: 'onShowClick'
        }]
    }],
});