attaching.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Attaching Other Components - 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>Attaching Other Components</h2>
  14. <p>Any other components can be attached to page bar.</p>
  15. <div style="margin:20px 0;"></div>
  16. <div class="easyui-panel">
  17. <div class="easyui-pagination" data-options="showPageList:false,total:114,buttons:$('#buttons')"></div>
  18. </div>
  19. <div id="buttons">
  20. <table style="border-spacing:0">
  21. <tr>
  22. <td>
  23. <input class="easyui-searchbox" style="width:150px">
  24. </td>
  25. <td>
  26. <a href="javascript:void(0)" class="easyui-linkbutton" data-options="iconCls:'icon-save',plain:true"></a>
  27. </td>
  28. </tr>
  29. </table>
  30. </div>
  31. </body>
  32. </html>