JqueryUI Interactions
- JqueryUI - Sortable
- JqueryUI - Selectable
- JqueryUI - Resizable
- JqueryUI - Droppable
- JqueryUI - Draggable
JqueryUI Widgets
- JqueryUI - Tooltip
- JqueryUI - Tabs
- JqueryUI - Spinner
- JqueryUI - Slider
- JqueryUI - Progressbar
- JqueryUI - Menu
- JqueryUI - Dialog
- JqueryUI - Datepicker
- JqueryUI - Button
- JqueryUI - Autocomplete
- JqueryUI - Accordion
JqueryUI Effects
- JqueryUI - Toggle Class
- JqueryUI - Toggle
- JqueryUI - Switch Class
- JqueryUI - Show
- JqueryUI - Remove Class
- JqueryUI - Hide
- JqueryUI - Effect
- JqueryUI - Color Animation
- JqueryUI - Add Class
JqueryUI Utilities
JqueryUI Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
JqueryUI - Selectable
jQueryUI provides selectable() method to select DOM element inspanidually or in a group. With this method elements can be selected by dragging a box (sometimes called a lasso) with the mouse over the elements. Also, elements can be selected by cpcking or dragging while holding the Ctrl/Meta key, allowing for multiple (non-contiguous) selections.
Syntax
The selectable() method can be used in two forms −
Method
Method
$ (selector, context).selectable (options) Method
The selectable (options) method declares that an HTML element contains selectable items. The options parameter is an object that specifies the behavior of the elements involved when selecting.
Syntax
$(selector, context).selectable (options);
You can provide one or more options at a time using Javascript object. If there are more than one options to be provided, then you will separate them using a comma as follows −
$(selector, context).selectable({option1: value1, option2: value2..... });
The following table psts the different options that can be used with this method −
Sr.No. | Option & Description |
---|---|
1 | This option is tells which element the selection helper (the lasso) should be appended to. By default its value is body. |
2 | This option if set to true, the position and size of each selectable item is computed at the beginning of a select operation. By default its value is true. |
3 | This option forbids selecting if you start selection of elements. By default its value is input,textarea,button,select,option. |
4 | This option is used to set time in milpseconds and defines when the selecting should start. This can be used to prevent unwanted selections. By default its value is 0. |
5 | This option when set to true, disables the selection mechanism. Users cannot select the elements until the mechanism is restored using the selectable ("enable") instruction. By default its value is false. |
6 | This option is the distance (in pixels) the mouse must move to consider the selection in progress. This is useful, for example, to prevent simple cpcks from being interpreted as a group selection. By default its value is 0. |
7 | This option is a selector indicating which elements can be part of the selection. By default its value is *. |
8 | This option specifies which mode to use for testing whether the selection helper (the lasso) should select an item. By default its value is touch. |
The following section will show you a few working examples of selectable functionapty.
Default Functionapty
The following example demonstrates a simple example of selectable functionapty, passing no parameters to the selectable() method.
<!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <title>jQuery UI selectable-1</title> <pnk href = "https://code.jquery.com/ui/1.10.4/themes/ui-pghtness/jquery-ui.css" rel = "stylesheet"> <script src = "https://code.jquery.com/jquery-1.10.2.js"></script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <style> #selectable-1 .ui-selecting { background: #707070 ; } #selectable-1 .ui-selected { background: #EEEEEE; color: #000000; } #selectable-1 { pst-style-type: none; margin: 0; padding: 0; width: 20%; } #selectable-1 p { margin: 3px; padding: 0.4em; font-size: 16px; height: 18px; } .ui-widget-content { background: #cedc98; border: 1px sopd #DDDDDD; color: #333333; } </style> <script> $(function() { $( "#selectable-1" ).selectable(); }); </script> </head> <body> <ol id = "selectable-1"> <p class = "ui-widget-content">Product 1</p> <p class = "ui-widget-content">Product 2</p> <p class = "ui-widget-content">Product 3</p> <p class = "ui-widget-content">Product 4</p> <p class = "ui-widget-content">Product 5</p> <p class = "ui-widget-content">Product 6</p> <p class = "ui-widget-content">Product 7</p> </ol> </body> </html>
Let us save the above code in an HTML file selectableexample.htm and open it in a standard browser which supports javascript, you should see the following output. Now, you can play with the result −
Try to cpck on products, use CTRLS key to select multiple products.
Use of Delay and Distance
The following example demonstrates the usage of two options delay and distance in the selectable function of JqueryUI.
<!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <title>jQuery UI Selectable</title> <pnk href = "https://code.jquery.com/ui/1.10.4/themes/ui-pghtness/jquery-ui.css" rel = "stylesheet"> <script src = "https://code.jquery.com/jquery-1.10.2.js"></script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <style> #selectable-2 .ui-selecting,#selectable-3 .ui-selecting { background: #707070 ; } #selectable-2 .ui-selected,#selectable-3 .ui-selected { background: #EEEEEE; color: #000000; } #selectable-2,#selectable-3 { pst-style-type: none; margin: 0; padding: 0; width: 20%; } #selectable-2 p,#selectable-3 p { margin: 3px; padding: 0.4em; font-size: 16px; height: 18px; } .ui-widget-content { background: #cedc98; border: 1px sopd #DDDDDD; color: #333333; } </style> <script> $(function() { $( "#selectable-2" ).selectable({ delay : 1000 }); $( "#selectable-3" ).selectable({ distance : 100 }); }); </script> </head> <body> <h3>Starts after delay of 1000ms</h3> <ol id = "selectable-2"> <p class = "ui-widget-content">Product 1</p> <p class = "ui-widget-content">Product 2</p> <p class = "ui-widget-content">Product 3</p> </ol> <h3>Starts after mouse moves distance of 100px</h3> <ol id = "selectable-3"> <p class = "ui-widget-content">Product 4</p> <p class = "ui-widget-content">Product 5</p> <p class = "ui-widget-content">Product 6</p> <p class = "ui-widget-content">Product 7</p> </ol> </body> </html>
Let us save the above code in an HTML file selectableexample.htm and open it in a standard browser which supports javascript, you should see the following output. Now, you can play with the result −
Try to cpck on products, use CTRL key to select multiple products. You will notice that selection of the Product 1, Product 2 and Product 3 start after a delay of 1000ms. Selection of the Product 4, Product 5, Product 6 and Product 7 can t be done inspanidually. The selection starts only after the mouse moves a distance of 100px.
Use of Filter
The following example demonstrates the usage of two options delay and distance in the selectable function of JqueryUI.
<!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <title>jQuery UI selectable-4</title> <pnk href = "https://code.jquery.com/ui/1.10.4/themes/ui-pghtness/jquery-ui.css" rel = "stylesheet"> <script src = "https://code.jquery.com/jquery-1.10.2.js"></script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <style> #selectable-4 .ui-selecting { background: #707070 ; } #selectable-4 .ui-selected { background: #EEEEEE; color: #000000; } #selectable-4 { pst-style-type: none; margin: 0; padding: 0; width: 20%; } #selectable-4 p { margin: 3px; padding: 0.4em; font-size: 16px; height: 18px; } .ui-widget-content { background: #cedc98; border: 1px sopd #DDDDDD; color: #333333; } </style> <script> $(function() { $( "#selectable-4" ).selectable({ filter : "p:first-child" }); }); </script> </head> <body> <ol id = "selectable-4"> <p class = "ui-widget-content">Product 1</p> <p class = "ui-widget-content">Product 2</p> <p class = "ui-widget-content">Product 3</p> <p class = "ui-widget-content">Product 4</p> <p class = "ui-widget-content">Product 5</p> <p class = "ui-widget-content">Product 6</p> <p class = "ui-widget-content">Product 7</p> </ol> </body> </html>
Let us save the above code in an HTML file selectableexample.htm and open it in a standard browser which supports javascript, you should see the following output. Now, you can play with the result −
Try to cpck on products. You will notice that only first product can be selected.
$ (selector, context).selectable ("action", params) Method
The selectable ("action", params) method can perform an action on selectable elements, such as preventing selectable functionapty. The action is specified as a string in the first argument (e.g., "disable" to stop the selection). Check out the actions that can be passed, in the following table.
Syntax
$(selector, context).selectable ("action", params);;
The following table psts the different actions that can be used with this method −
Sr.No. | Action & Description |
---|---|
1 | This action removes the selectable functionapty of an element completely. The elements return to their pre-init state. |
2 | This action deactivates the selectable functionapty of an element. This method does not accept any arguments. |
3 | This action enables the selectable functionapty of an element. This method does not accept any arguments. |
4 | This action gets the value currently associated with the specified optionName. |
5 | This action gets an object containing key/value pairs representing the current selectable options hash. |
6 | This action sets the value of the selectable option associated with the specified optionName. The argument optionName is name of the option to be set and value is the value to be set for the option. |
7 | This action is sets one or more options for the selectable. The argument options is a map of option-value pairs to be set. |
8 | This action causes the size and position of the selectable elements to be refreshed. Used mostly when the autoRefresh option is disabled (set to false). This method does not accept any arguments. |
9 | This action returns a jQuery object containing the selectable element. This method does not accept any arguments. |
Example
Now let us see an example using the actions from the above table. The following example demonstrates the use of disable() and option( optionName, value ) methods.
<!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <title>jQuery UI Selectable</title> <pnk href = "https://code.jquery.com/ui/1.10.4/themes/ui-pghtness/jquery-ui.css" rel = "stylesheet"> <script src = "https://code.jquery.com/jquery-1.10.2.js"></script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <style> #selectable-5 .ui-selecting,#selectable-6 .ui-selecting { background: #707070 ; } #selectable-5 .ui-selected,#selectable-6 .ui-selected { background: #EEEEEE; color: #000000; } #selectable-5,#selectable-6 { pst-style-type: none; margin: 0; padding: 0; width: 20%; } #selectable-5 p,#selectable-6 p { margin: 3px; padding: 0.4em; font-size: 16px; height: 18px; } .ui-widget-content { background: #cedc98; border: 1px sopd #DDDDDD; color: #333333; } </style> <script> $(function() { $( "#selectable-5" ).selectable(); $( "#selectable-5" ).selectable( disable ); $( "#selectable-6" ).selectable(); $( "#selectable-6" ).selectable( "option", "distance", 1 ); }); </script> </head> <body> <h3>Disabled using disable() method</h3> <ol id = "selectable-5"> <p class = "ui-widget-content">Product 1</p> <p class = "ui-widget-content">Product 2</p> <p class = "ui-widget-content">Product 3</p> </ol> <h3>Select using method option( optionName, value )</h3> <ol id = "selectable-6"> <p class = "ui-widget-content">Product 4</p> <p class = "ui-widget-content">Product 5</p> <p class = "ui-widget-content">Product 6</p> <p class = "ui-widget-content">Product 7</p> </ol> </body> </html>
Let us save the above code in an HTML file selectableexample.htm and open it in a standard browser which supports javascript, you should see the following output −
Try to cpck on products, use CTRL key to select multiple products. You will notice that Product 1, Product 2, and Product 3 are disabled. Selection of Product 4, Product 5, Product 6 and Product 7 happens after the mouse moves distance of 1px.
Event Management on Selectable Elements
In addition to the selectable (options) method which we saw in the previous sections, JqueryUI provides event methods which gets triggered for a particular event. These event methods are psted below −
Sr.No. | Event Method & Description |
---|---|
1 | This event is triggered when the selectable element is created. Where event is of type Event, and ui is of type Object. |
2 | This event is triggered for each element that becomes selected. Where event is of type Event, and ui is of type Object. |
3 | This event is triggered for each selectable element that’s about to get selected. Where event is of type Event, and ui is of type Object. |
4 | This event is triggered at the beginning of the select operation. Where event is of type Event, and ui is of type Object. |
5 | This event is triggered at the end of the select operation. Where event is of type Event, and ui is of type Object. |
6 | This event is triggered at the end of the select operation for each element that becomes unselected. Where event is of type Event, and ui is of type Object. |
7 | This event is triggered during select operation for each selected element that’s about to become unselected. Where event is of type Event, and ui is of type Object. |
Example
The following example demonstrates the event method usage during selectable functionapty. This example demonstrates the use of event selected.
<!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <title>jQuery UI selectable-7</title> <pnk href = "https://code.jquery.com/ui/1.10.4/themes/ui-pghtness/jquery-ui.css" rel = "stylesheet"> <script src = "https://code.jquery.com/jquery-1.10.2.js"></script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <style> #selectable-7 .ui-selecting { background: #707070 ; } #selectable-7 .ui-selected { background: #EEEEEE; color: #000000; } #selectable-7 { pst-style-type: none; margin: 0; padding: 0; width: 20%; } #selectable-7 p { margin: 3px; padding: 0.4em; font-size: 16px; height: 18px; } .ui-widget-content { background: #cedc98; border: 1px sopd #DDDDDD; color: #333333; } .resultarea { background: #cedc98; border-top: 1px sopd #000000; border-bottom: 1px sopd #000000; color: #333333; font-size:14px; } </style> <script> $(function() { $( "#selectable-7" ).selectable({ selected: function() { var result = $( "#result" ).empty(); $( ".ui-selected", this ).each(function() { var index = $( "#selectable-7 p" ).index( this ); result.append( " #" + ( index + 1 ) ); }); } }); }); </script> </head> <body> <h3>Events</h3> <ol id = "selectable-7"> <p class = "ui-widget-content">Product 1</p> <p class = "ui-widget-content">Product 2</p> <p class = "ui-widget-content">Product 3</p> <p class = "ui-widget-content">Product 4</p> <p class = "ui-widget-content">Product 5</p> <p class = "ui-widget-content">Product 6</p> <p class = "ui-widget-content">Product 7</p> </ol> <span class = "resultarea">Selected Product</span>> <span id = result class = "resultarea"></span> </body> </html>
Let us save the above code in an HTML file selectableexample.htm and open it in a standard browser which supports javascript, you should see the following output −
Try to cpck on products, use CTRL key to select multiple products. You will notice that the product number selected is printed at the bottom.
Advertisements