码迷,mamicode.com
首页 > Web开发 > 详细

ExtJs布局之viewport

时间:2016-03-21 23:08:32      阅读:535      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
<head>
    <title>ExtJs</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <link rel="stylesheet" type="text/css" href="ExtJs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css">
		<script type="text/javascript" src="ExtJs/ext-all.js"></script>
		<script type="text/javascript" src="ExtJs/bootstrap.js"></script>
		<script type="text/javascript" src="ExtJs/packages/ext-theme-crisp/build/ext-theme-crisp.js"></script>

    <script type="text/javascript">
			Ext.onReady(function(){
        Ext.create(‘Ext.container.Viewport‘, {
          layout: ‘border‘,
          items: [{
            title: ‘north Panel‘,
            html: ‘Top‘,
            region: ‘north‘,
            height: 1000
          },{
            title: ‘West Panel‘,
            html: ‘Left‘,
            region: ‘west‘,
            width: 150
          },{
            title: ‘main Content‘,
            html: ‘Middle‘,
            region: ‘center‘
          }]
        });
      });
    </script>
</head>
<body>

</body>
</html>

  技术分享

ExtJs布局之viewport

标签:

原文地址:http://www.cnblogs.com/aguncn/p/5304167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!