I have a control on a page, and would like to restrict users entering dates directly into the textbox associated with the date picker.
Is there any way to do this.
Thanks and Regards,
Wriju
I have a control on a page, and would like to restrict users entering dates directly into the textbox associated with the date picker.
Is there any way to do this.
Thanks and Regards,
Wriju
Copyright © 2021 Jogjafile Inc.
An easy solution would be adding
onkeydown="return false"
to your<tr:inputDate/>
. This will prevent users from typing in the date field.