当前位置: 代码迷 >> Web前端 >> Panel 的column格局的简单例子
  详细解决方案

Panel 的column格局的简单例子

热度:701   发布时间:2012-11-01 11:11:33.0
Panel 的column布局的简单例子
<script type="text/javascript">

    Ext.onReady(function(){
      new Ext.Panel({
           renderTo:"Hello",   //指定页面上的层ID
           width:400,
           height:200,
           layout:"column",
           items:[{
               columnWidth:.5,
               title:"one"},
               {columnWidth:.5,
               title:"two"}]
       });
    });
    </script>
  </head>
 
  <body>
   
    <div id="Hello"></div>
  </body>
</html>
  相关解决方案