@liquidshadowfox wrote:
For some reason, my modal below fails to allow me to properly click the dropdown. When I click the dropdown for example, nothing happens. This is from a stock blank ionic 1 template that I started to play with an added modals, let me know if you need more information or if you think you know what could be the problem.
<ion-modal-view class="bg-gradient"> <ion-header-bar class="no-bg b-none"> <h1 class="title"></h1> <button class="button button-icon button-clear button-light ion-android-close" ng-click="closeFilter()"></button> </ion-header-bar> <ion-content class="padding"> <div class="list card"> <label class="item item-input"> <span class="input-label">First name</span> <input type="text" focus-me> </label> <label class="item item-input"> <span class="input-label">Last name</span> <input type="text"> </label> <label class="item item-input"> <span class="input-label">Phone Number</span> <input type="email"> </label> <label class="item item-input"> <span class="input-label">Password</span> <input type="password"> </label> </div> <div class="list"> <label class="item item-input item-select"> <div class="input-label"> Lightsaber </div> <select> <option>Blue</option> <option selected>Green</option> <option>Red</option> </select> </label> </div> </ion-content> </ion-modal-view>
Posts: 1
Participants: 1