nocollapsible.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>No collapsible button in Layout - jQuery EasyUI Demo</title>
  6. <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
  7. <link rel="stylesheet" type="text/css" href="../../themes/icon.css">
  8. <link rel="stylesheet" type="text/css" href="../demo.css">
  9. <script type="text/javascript" src="../../jquery.min.js"></script>
  10. <script type="text/javascript" src="../../jquery.easyui.min.js"></script>
  11. </head>
  12. <body>
  13. <h2>No collapsible button in Layout</h2>
  14. <p>The layout region panel has no collapsible button.</p>
  15. <div style="margin:20px 0;"></div>
  16. <div class="easyui-layout" style="width:700px;height:350px;">
  17. <div data-options="region:'north'" style="height:50px"></div>
  18. <div data-options="region:'south',split:true" style="height:50px;"></div>
  19. <div data-options="region:'east',split:true,title:'East',collapsible:false" style="width:250px;">
  20. <table id="tt" class="easyui-propertygrid" data-options="
  21. url: 'propertygrid_data1.json',
  22. method: 'get',
  23. showGroup: true,
  24. fit: true,
  25. border: false
  26. ">
  27. </table>
  28. </div>
  29. <div data-options="region:'center',title:'Main Title',iconCls:'icon-ok',href:'_content.html'" style="padding:10px">
  30. </div>
  31. </div>
  32. </body>
  33. </html>