26cbf429d072015cf015435aef84a94743c81e47.svn-base 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. %>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  9. <title></title>
  10. <!--框架必需start-->
  11. <script type="text/javascript" src="<%=path%>/libs/js/jquery.js"></script>
  12. <script type="text/javascript" src="<%=path%>/libs/js/language/cn.js"></script>
  13. <script type="text/javascript" src="<%=path%>/libs/js/framework.js"></script>
  14. <link href="<%=path%>/libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
  15. <link rel="stylesheet" type="text/css" id="skin" prePath="<%=path%>/"/>
  16. <link rel="stylesheet" type="text/css" id="customSkin"/>
  17. <!--框架必需end-->
  18. </head>
  19. <body>
  20. <div class="box1" panelWidth="800">
  21. <fieldset>
  22. <legend>1、普通弹窗表格</legend>
  23. <input type="button" value="查看效果"
  24. onclick='top.Dialog.open({URL:"<%=path%>/sample/table/basic-pop-content1.jsp",Title:"普通弹窗表格",Width:650,Height:400});'/>
  25. <p>
  26. 就是把内容放在body中,整体内容随滚动条滚动,没什么特别的地方。
  27. </p>
  28. </fieldset>
  29. <div class="height_15"></div>
  30. <fieldset>
  31. <legend>2、有上下固定区域的弹窗表格</legend>
  32. <input type="button" value="查看效果"
  33. onclick='top.Dialog.open({URL:"<%=path%>/sample/table/basic-pop-content2.jsp",Title:"有上下固定区域的",ShowMaxButton:true,Width:650,Height:400});'/>
  34. <p>
  35. 让弹窗内容也像右侧内页那样有滚动区域和固定区域。
  36. </p>
  37. </fieldset>
  38. <div class="height_15"></div>
  39. <fieldset>
  40. <legend>3、表头固定的弹窗表格</legend>
  41. <input type="button" value="查看效果"
  42. onclick='top.Dialog.open({URL:"<%=path%>/sample/table/basic-pop-content3.jsp",Title:"表头固定",ShowMaxButton:true,Width:650,Height:400});'/>
  43. <p>
  44. 按照上述方法,也可实现弹窗中表格表头固定。
  45. </p>
  46. </fieldset>
  47. <div class="height_15"></div>
  48. </div>
  49. </body>
  50. </html>