Jaseel Muhammed
Jaseel Muhammed

Reputation: 21

Datepicker not working in ionic ios

I am using cordoca datepicker plugin , it works fine in android but in ios it have some issues .

when i am clicking date picker a keyboard overlaps datepicker then it stuck .

<label class="item item-input"> <i class="icon-clock"></i> <input type="date" id="date-format" ng-click="loadDate()" placeholder="Select date & time (dd/mm/yyyy H:m:a)" ng-model="meetingData.enddate"> </label>

Upvotes: 1

Views: 1355

Answers (1)

veerababu
veerababu

Reputation: 201

Try with this

Add readonly for this input tag

<label class="item item-input">
  <i class="icon-clock"></i>
  <input type="date" id="date-format" ng-click="loadDate()" placeholder="Select date & time (dd/mm/yyyy H:m:a)" ng-model="meetingData.enddate" readonly > </label>

Upvotes: 4

Related Questions