Reputation:
I have datepicker with Angular . here is the question:
datepicker
How can to prevent user write to in input? I just want to let user add date from pop up.
Upvotes: 5
Views: 336
Reputation: 472
use readonly propery of html
<input type="text" readonly>
Upvotes: 8