/[projects]/misc/horsensspejder-web/jquery/jquery-picklist/README.md
ViewVC logotype

Annotation of /misc/horsensspejder-web/jquery/jquery-picklist/README.md

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2125 - (hide annotations) (download)
Wed Mar 12 19:30:05 2014 UTC (10 years, 3 months ago) by torben
File size: 1105 byte(s)
initial import
1 torben 2125 #jQuery PickList#
2    
3     jQuery PickList, or `jquery-picklist`, is a jQuery-based widget that turns a regular multiple option select box into a side-by-side pick list.
4    
5     For detailed usage demos, visit: http://code.google.com/p/jquery-ui-picklist/wiki/Demos
6    
7     ##Features##
8    
9     * Fully customizable button & list labels and CSS class names
10     * Support for items with rich HTML content
11     * CTRL + click selects multiple items
12     * SHIFT + click selects a range of items
13     * Double-clicking moves items
14     * Compatible with ordinary form submission
15     * Works in all major browsers (IE, FF, Chrome, Opera, and Safari)
16     * Many options for customization
17     * Works with very large lists
18     * **No longer requires jQuery UI!**
19    
20     ##Example Usage##
21    
22     ###JavaScript###
23    
24     $(function()
25     {
26     $("#foobar").pickList();
27     });
28    
29     ###HTML###
30    
31     <select id="foobar" name="foobar" multiple="multiple">
32     <option value="1">Option 1</option>
33     <option value="2" selected="selected">Option 2</option>
34     <option value="3">Option 3</option>
35     <option value="4" selected="selected">Option 4</option>
36     <option value="5">Option 5</option>
37     </select>

  ViewVC Help
Powered by ViewVC 1.1.20