jQuery Mobile - Filter Collapsible Set



Description

The filter widget can also be used on collapsible set. You have to use data-filter attribute and set to true on the element that creates the collapsible set.

Example

Following example demonstrates the use of filterable collapsible set in jQuery Mobile.

<!DOCTYPE html>
<html>
   <head>
      <title>Filterable collapsible set</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>

   <body>
      <form>
         <input data-type = "search" id = "searchForCollapsibleSet">
      </form>
      
      <div data-role = "collapsibleset" data-filter = "true" data-inset = "true" 
         id = "collapsiblesetForFilter" data-input = "#searchForCollapsibleSet">
         <div data-role = "collapsible" data-filtertext = "India">
            <h3>India</h3>
            <ul data-role = "listview" data-inset = "false">
               <li>Bengaluru</li>
               <li>Chennai</li>
               <li>Mumbai</li>
               <li>New Delhi</li>
            </ul>
         </div>
      
         <div data-role = "collapsible" data-filtertext = "Australia">
            <h3>Australia</h3>
            <ul data-role = "listview" data-inset = "false">
               <li>Canberra</li>
               <li>Sydney</li>
               <li>Perth</li>
               <li>Melbourne</li>
            </ul>
         </div>
      
         <div data-role = "collapsible" data-filtertext = "United Kingdom">
            <h3>United Kingdom</h3>
            <ul data-role = "listview" data-inset = "false">
               <li>London</li>
               <li>Birmingham</li>
               <li>Cardiff</li>
               <li>Glasgow</li>
            </ul>
         </div>
      </div>
      
   </body>
</html>

Output

Let's carry out the following steps to see how the above code works −

  • Save the above html code as filterable_collapsible_set.html file in your server root folder.

  • Open this HTML file as http://localhost/filterable_collapsible_set.html and the following output will be displayed.

jquery_mobile_widgets.htm
Advertisements