Hi, I previously had problems using the select on Windows 10. Previously from the docs I would use...
<label class="item item-input item-select">
<div class="input-label">
Please select
</div>
<select>
<option>Option1</option>
<option selected>Option 2</option>
<option>Option 3</option>
</select>
</label>
I upgraded to 1.2, and now us <ion-input>
as follows
<ion-input class="item item-input item-select">
<i class="icon ion-person"></i>
<ion-label>please select</ion-label>
<select>
<option>Option1</option>
<option selected>Option 2</option>
<option>Option 3</option>
</select>
</ion-input>
Unfortunately is still does not work on a device (have tried on 2 different devices). The drop down items to do who up (also the alignment is out)
Perhaps I have the syntax incorrect? Any other suggestions would b hugely appreciated.
Thanks in advance!