123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Group ComboBox - jQuery EasyUI Demo</title>
- <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
- <link rel="stylesheet" type="text/css" href="../../themes/icon.css">
- <link rel="stylesheet" type="text/css" href="../demo.css">
- <script type="text/javascript" src="../../jquery.min.js"></script>
- <script type="text/javascript" src="../../jquery.easyui.min.js"></script>
- </head>
- <body>
- <h2>Group ComboBox</h2>
- <p>This example shows how to display combobox items in groups.</p>
- <div style="margin:20px 0">
- <input type="checkbox" onchange="$('#cc').combobox({groupPosition:$(this).is(':checked')?'sticky':'static'})">
- <span>Sticky Group</span>
- </div>
- <div class="easyui-panel" style="width:100%;max-width:400px;padding:30px 60px;">
- <div style="margin-bottom:20px">
- <input id="cc" class="easyui-combobox" name="browser" style="width:100%;" data-options="
- url: 'combobox_data2.json',
- method: 'get',
- valueField:'value',
- textField:'text',
- groupField:'group',
- label: 'Browser:',
- labelPosition: 'top'
- ">
- </div>
- </div>
- </body>
- </html>
|