c6932ea2fa575b6f97cc91b75a9a263a51e273bf.svn-base 958 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Shared Calendar in DateBox - 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>Shared Calendar in DateBox</h2>
  14. <p>Multiple datebox components can share a calendar and use it to pick dates.</p>
  15. <div style="margin:20px 0;"></div>
  16. <table>
  17. <tr>
  18. <td>Start Date:</td>
  19. <td>
  20. <input class="easyui-datebox" data-options="sharedCalendar:'#cc'">
  21. </td>
  22. <td>End Date:</td>
  23. <td>
  24. <input class="easyui-datebox" data-options="sharedCalendar:'#cc'">
  25. </td>
  26. </tr>
  27. </table>
  28. <div id="cc" class="easyui-calendar"></div>
  29. </body>
  30. </html>