如何使ExtJS表格布局具有百分比而不是高度和宽度的绝对值?

时间:2011-02-11 11:08:11

标签: javascript extjs

使用Ext.Paneltable布局,我能够按照我想要的方式创建布局。但是,如何更改此代码以便我可以按比例定义宽度和高度?

e.g。该表不应该是800像素而是100%的屏幕宽度,每个框不是200像素而是25%。

enter image description here

这是代码:

<script type="text/javascript">

    clearExtjsComponent(targetRegion);

    var table_wrapper2 = new Ext.Panel({
        id: 'table_wrapper2',
        baseCls: 'x-plain',
        renderTo: Ext.getBody(),
        layout:'table',
        layoutConfig: {columns:2},
        defaults: {
            frame:true,
            width:200,
            height: 200,
            style: 'margin: 0 10px 10px 0'
        },
        items:[{
                title:'Shopping Cart',
                width: 400,
                height: 290,
                colspan: 2
            },{
                title:'Invoice Address',
                width: 190,
                height: 100
            },{
                title:'Delivery Address',
                width: 200,
                height: 100
            }
        ]
    })

    var table_wrapper = new Ext.Panel({
        id:'table_wrapper',
        baseCls:'x-plain',
        renderTo: Ext.getBody(),
        layout:'table',
        layoutConfig: {columns:4},
        defaults: {
            frame:true,
            width:200,
            height: 200,
            style: 'margin: 10px 0 0 10px'
        },
        items:[{
                title:'Orders',
                width: 810,
                colspan: 4
            },{
                title:'Customer Information',
                width: 400,
                height: 400,
                colspan: 2
            },{
                //title:'Shopping Cart',
                frame: false,
                border: false,
                width: 400,
                height: 400,
                colspan: 2,
                items: [ table_wrapper2 ]
            }
        ]
    });

    replaceComponentContent(targetRegion, table_wrapper);

    hideComponent(regionHelp);

</script>

4 个答案:

答案 0 :(得分:4)

而不是:

    layout:'table',
    layoutConfig: {columns:2},

试试这个:

    layout: {
       type: 'table',
       columns: 3,
       tableAttrs: {
          style: {
             width: '100%',
             height: '100%'
          }
       }
    },

答案 1 :(得分:1)

就像我在使用vbox和hbox布局的回复中说的那样,如果你想做相对定位,对你来说可能会更容易一些。此外,如果您想将窗口拉伸到窗口,请将其放在视口中,该视口会自动使用整个窗口。

你可能想稍微改变一下布局(边框,框架),但是对于vbox和hbox布局,它会是这样的:

new Ext.Viewport({
    layout: 'vbox',
    layoutConfig: {
        align : 'stretch',
        pack  : 'start'
    },
    defaults: {
        style: 'margin: 10px 0 0 10px'
    },
    items:[{
            title:'Orders',
            height: 200
        },{
            layout: 'hbox',
            flex: 1,
            layoutConfig: {
                align : 'stretch',
                pack  : 'start'
            },
            items: [{
                title:'Customer Information',
                flex: 1
            },{
                layout: 'vbox',
                flex: 1,
                layoutConfig: {
                    align : 'stretch',
                    pack  : 'start'
                },
                items: [{
                    title: 'Shopping cart',
                    height: 200
                },{
                    layout: 'hbox',
                    flex: 1,
                    layoutConfig: {
                        align : 'stretch',
                        pack  : 'start'
                    },
                    items: [{
                        title: 'Invoice address',
                        flex: 1
                    },{
                        title: 'Delivery address',
                        flex: 1
                    }]
                }]
            }]

        }
    ]
});

答案 2 :(得分:1)

试试这个小提琴的例子: https://fiddle.sencha.com/#fiddle/2dm

Ext.create('Ext.panel.Panel', {
    title: 'Car Simple Tree',
    height: 200, //Fixed height for this panel
    renderTo: Ext.getBody(),
    layout: {
        type: 'table',
        columns: 2,
        tableAttrs: {
            style: {
                width: '100%' // To make the cell width 100% 
            }
        }
    },
    items: [{
        xtype: 'panel',
        title: 'panel title',
        collapsible: true,
        titleCollapse: true,
        bodyStyle: {
            background: '#D9E5F3',
            borderColor: '#99BCE8',
            borderWidth: '1px'
        },
        //scrollable: true,
        //autoScroll: true,
        layout: {
            pack: 'center',
            type: 'hbox'
        },
        rowspan: 1,
        colspan: 2,
        width: '100%',
        items: [{
            text: 'Save',
            xtype: 'button',
            padding: 5
        }]
    }, {
        html: 'Cell C content',
        cellCls: 'highlight'
    }, {
        html: 'Cell D content'
    }]
});

答案 3 :(得分:0)

请考虑使用ColumnLayout。这使您可以选择像素和宽度百分比。