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

前端之家收集整理的这篇文章主要介绍了javascript – 如何使ExtJS表格布局具有百分比而不是高度和宽度的绝对值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用Ext.Panel和表格布局,我能够按照我想要的方式创建布局.但是,如何更改此代码以便我可以按比例定义宽度和高度?

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

这是代码

<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',layoutConfig: {columns:4},style: 'margin: 10px 0 0 10px'
        },items:[{
                title:'Orders',width: 810,colspan: 4
            },{
                title:'Customer Information',height: 400,{
                //title:'Shopping Cart',frame: false,border: false,colspan: 2,items: [ table_wrapper2 ]
            }
        ]
    });

    replaceComponentContent(targetRegion,table_wrapper);

    hideComponent(regionHelp);

</script>

解决方法

代替 :
layout:'table',

试试这个 :

layout: {
       type: 'table',columns: 3,tableAttrs: {
          style: {
             width: '100%',height: '100%'
          }
       }
    },
原文链接:https://www.f2er.com/js/157620.html

猜你在找的JavaScript相关文章