Ionic Select
Ionic Select – Select in Ionic Provides the functionality to select option from dropdown. It will work different than the traditional select box in the browser. We are going to explain the functionality of the select with example and demo.
Ionic Select
Now let us create very simple select box in ionic. First wrap the select box with label and add the classes – .item, .item-input and .item-select. Now add div with class .input-label inside the created label to create label. Now add html select <select> and their options in <option> tag.
Ionic Select Example
<div class="list"> <label class="item item-input item-select"> <div class="input-label"> Slect Country </div> <select> <option>USA</option> <option selected>France</option> <option>India</option> <option>China</option> <option>Japan</option> </select> </label> </div> |
Advertisements
Add Comment
📖 Read More
- 1. Ionic Tabs
- 2. Ionic Grid
- 3. Ionic Colors
- 4. Ionic Icons
- 5. Ionic Action Sheet
- 6. Ionic Backdrop
- 7. Ionic js Content
- 8. Ionic Ion-refresher
- 9. Ionic Events
- 10. Ionic Keyboard