当前位置: 代码迷 >> Web前端 >> table格局小实例
  详细解决方案

table格局小实例

热度:290   发布时间:2012-11-01 11:11:33.0
table布局小实例
Table布局由类Ext.layout.TableLayout定义,名称为table,该布局负责把容器中的子元素按照类似普通html标签
<script type="text/javascript">
Ext.onReady(function(){
var p = new Ext.Panel({
     renderTo:'hello',
     title:'table',
     width:500,
     height:200,
     layout:'table',
     layoutConfig:{columns:3},
     items:[
     {title:'one',html:'one is ok',rowspan:2,height:100},
     {title:'two',html:'two is ok',colspan:2},
     {title:'three',html:'three is ok'},
     {title:'four',html:'four is ok'}
     ]
});
});
    </script>
  </head>
 
  <body>
   
    <div id="hello"></div>
  </body>
</html>
  相关解决方案