Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Multi-selection in JavaScript</title>
- <!-- the viewport meta tag magnifies the page on mobile browsers to make it useable there -->
- <meta name="viewport" content="initial-scale=1.0, user-scalable=yes">
- <style type="text/css">
- body {
- /* dark theme */ background-color:#343; color:#ddd;
- /* modern font pack */ font-family: ubuntu,'noto sans','open sans', calibri, 'segoe ui', 'trebuchet ms', arial, helvetica, verdana, tahoma, 'Bitstream Vera Sans', 'sans-serif';
- }
- a { color: lightblue; }
- /* prevent buttons from sticking to each other */
- button { margin-top: 1em; }
- /* Initially grey out containers that are only meant to be shown with JavaScript activated, in order to provide a preview. */
- JS_show { opacity:0.2; pointer-events:none; }
- /* for completely hiding it if preferred, use: JS_show { display: none; } */
- </style>
- </head>
- <body>
- <JS_show>
- <button class="range_selector" onclick="MultiSelect.select_all(0);">Select all</button>
- <button class="range_selector" onclick="MultiSelect.select_none(0);">Select none</button>
- <button class="range_selector" onclick="MultiSelect.invert_selection(0);">Invert selection</button>
- <!-- This checks all unchecked boxes and unchecks all checked boxes. -->
-
- <button class="range_selector" onclick="MultiSelect.select_range(0);">Select range</button>
- <button class="range_selector" onclick="MultiSelect.zebra_select(0);">Zebra select</button>
- <!--
- "Select range" does select all items between the first and last selected one. First known to be used in the early 2010s by ES File Explorer, a file manager for the Android mobile operating system.
- "Zebra select" alternately selects ranges of checked boxes. This allows selecting multiple ranges of items.
- -->
- <br />
- <form style="column-width:160px;">
- <!-- Note: the "id", "name", and "value" parameters have no effect on the behaviour of the buttons. -->
- <input type="checkbox" id="item1" name="item1" value="1">
- <label for="item1">Item 1</label><br>
- </form>
- </JS_show>
- <noscript>
- <!-- This guidance is shown if JavaScript is not available in the user's browser. -->
- <h2>JavaScript is unavailable</h2>
- <p>To mass-select check boxes, please activate JavaScript or use a web browser that supports it.</p>
- <p>If you are seeing this error in the Android HTML viewer, enter the path to this HTML file into the address bar of the web browser.</p>
- </noscript>
- <script type="text/javascript">
- // reveals "JS_show" containers
- if ( document.getElementsByTagName("JS_show")[0] ) /* check if JS_show containers exist */ {
- for (
- count=0; // initiate counter
- count < document.getElementsByTagName("JS_show").length; // count JS_show containers
- count++ // count up. Same as count+=1 and count=count+1.
- ) {
- // restore opacity and/or unhide by overriding CSS at the top using inline CSS:
- document.getElementsByTagName("JS_show")[count].setAttribute("style","display:block; opacity:1; pointer-events:all;");
- }
- }
- // == generate check boxes before running code ==
- var main_form=document.getElementsByTagName("form")[0]; // shortcut variable
- var checkbox_count=0; // defeating JS Hint error; no functional difference
- for (
- checkbox_count=2; // start at the second check box; the first already is already in the HTML for preview to non-JavaScript users
- checkbox_count <= 24; // add check boxes until there are 24.
- checkbox_count++ // count up
- ) {
- // create element (does not matter which)
- main_form.appendChild(document.createElement("span"));
- // add next box through HTML string
- main_form.lastElementChild.outerHTML='\n <input type="checkbox" id="item'+checkbox_count+'" name="item'+checkbox_count+'" value="'+checkbox_count+'">\n <label for="item'+checkbox_count+'">Item '+checkbox_count+'</label><br />';
- }
- // == main code ==
- var count=0; // Declaring variable for "for" loops to defeat JS Hint error; no functional difference.
- var MultiSelect = {}; // main object
- MultiSelect.select_form = function(form_number) {
- MultiSelect.current_boxes=document.getElementsByTagName("form")[form_number].getElementsByTagName("input");
- MultiSelect.number_of_boxes=document.getElementsByTagName("form")[form_number].getElementsByTagName("input").length-1; // correcting off-by-one error since length is shifted up by one.
- };
- MultiSelect.select_range = function(form_number) {
- MultiSelect.select_form(form_number); // select form out of multiple
- // find first checked box; prevent overrunning the last box and causing exception if none selected.
- MultiSelect.first_checked_box=0;
- while (! MultiSelect.current_boxes[MultiSelect.first_checked_box].checked && MultiSelect.first_checked_box < MultiSelect.number_of_boxes) {
- MultiSelect.first_checked_box++;
- }
- // find last checked box by counting down from end
- MultiSelect.last_checked_box=MultiSelect.number_of_boxes;
- while (! MultiSelect.current_boxes[MultiSelect.last_checked_box].checked && MultiSelect.last_checked_box > 0 ) {
- MultiSelect.last_checked_box--;
- }
- MultiSelect.current_box=MultiSelect.current_boxes[MultiSelect.first_checked_box+1];
- for (
- count=MultiSelect.first_checked_box;
- MultiSelect.current_box != MultiSelect.current_boxes[MultiSelect.last_checked_box];
- count++
- ) {
- MultiSelect.current_box = MultiSelect.current_boxes[count];
- MultiSelect.current_box.checked = true;
- }
- };
- // select every box
- MultiSelect.select_all = function(form_number) {
- MultiSelect.select_form(form_number);
- for (
- count=0;
- count < MultiSelect.number_of_boxes+1;
- count++
- ) { MultiSelect.current_boxes[count].checked=true; }
- };
- // deselect every box
- MultiSelect.select_none = function(form_number) {
- MultiSelect.select_form(form_number);
- for (
- count=0;
- count < MultiSelect.number_of_boxes+1;
- count++
- ) { MultiSelect.current_boxes[count].checked=false; }
- };
- // deselect selected boxes, select unselected boxes
- MultiSelect.invert_selection = function(form_number) {
- MultiSelect.select_form(form_number);
- for (
- count=0;
- count < MultiSelect.number_of_boxes+1;
- count++
- ) {
- if (MultiSelect.current_boxes[count].checked) {
- MultiSelect.current_boxes[count].checked=false;
- } else {
- MultiSelect.current_boxes[count].checked=true;
- }
- }
- };
- MultiSelect.zebra_select = function(form_number) {
- MultiSelect.select_form(form_number);
- var zebra_select_next=false; // reset to "false"
- for (
- count=0;
- count < MultiSelect.number_of_boxes+1;
- count++
- ) {
- /* switch selection mode */
- // check if box after current one exists to prevent exception from occuring
- while (MultiSelect.current_boxes[count+1] && MultiSelect.current_boxes[count].checked && count < MultiSelect.number_of_boxes) {
- zebra_select_next ? zebra_select_next=false : zebra_select_next=true;
- count++; // skip over already selected boxes
- }
- MultiSelect.current_boxes[count].checked=zebra_select_next;
- }
- };
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement