This repository was archived by the owner on May 28, 2019. It is now read-only.

Description
Hello, i'm trying to get ignoreReadonly() option to work in my app.
So far i've tried this:
var dateStart = document.getElementById('dateStart');
angular.element(dateStart).datepicker('option', 'ignoreReadonly', 'true');
and
angular.element(dateStart).datepicker({
ignoreReadonly : true
});
but none of them worked, is this feature implemented in Angular Ui Date?
Or does any of you guys know a alternative way to prevent mobile keyboard from show up?
Thank you!