icons.html 937 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>ComboBox with Extra Icons- 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>ComboBox with Extra Icons</h2>
  14. <p>The user can attach extra icons to the ComboBox.</p>
  15. <div style="margin:20px 0"></div>
  16. <input class="easyui-combobox"
  17. name="language"
  18. data-options="
  19. url:'combobox_data1.json',
  20. method:'get',
  21. valueField:'id',
  22. textField:'text',
  23. panelHeight:'auto',
  24. icons:[{
  25. iconCls:'icon-add'
  26. },{
  27. iconCls:'icon-cut'
  28. }]
  29. ">
  30. </body>
  31. </html>