
- jQuery Mobile Tutorial
- jQuery Mobile - Home
- jQuery Mobile - Overview
- jQuery Mobile - Setup
- jQuery Mobile - Pages
- jQuery Mobile - Icons
- jQuery Mobile - Transitions
- jQuery Mobile - Layouts
- jQuery Mobile - Widgets
- jQuery Mobile - Events
- jQuery Mobile - Forms
- jQuery Mobile - Themes
- jQuery Mobile - CSS Classes
- jQuery Mobile - Data Attributes
- jQuery Mobile Useful Resources
- jQuery Mobile - Interview Questions
- jQuery Mobile - Quick Guide
- jQuery Mobile - Useful Resources
- jQuery Mobile - Discussion
jQuery Mobile - Filterable Basics
Description
You can set data-filter attribute to true on a listview to create a filter for its items of the list.
To enter the search string, you have to provide a text field in your markup and filterable makes the use of it by giving a selector to access the text field's value of datainput attribute.
Example
Following example demonstrates the use of basic filterable in jQuery Mobile.
<!DOCTYPE html> <html> <head> <title>Filterable basics</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 class = "ui-filterable"> <input id = "filterBasic-input" data-type = "search"> </form> <ul data-role = "listview" data-filter = "true" data-input = "#filterBasic-input"> <li>Audi</li> <li>Benz</li> <li>BMW</li> <li>Datsun</li> <li>Ferrari</li> <li>Ford</li> <li>Mahindra</li> <li>Maruti Suzuki</li> <li>Renault</li> <li>Volkswagen</li> </ul> </body> </html>
Output
Let's carry out the following steps to see how the above code works −
Save the above html code as filterable_basic.html file in your server root folder.
Open this HTML file as http://localhost/filterable_basic.html and the following output will be displayed.
jquery_mobile_widgets.htm
Advertisements