Date picker - disable pop-up calendar on autofocus #356
-
I've got a form with a date_picker as the very first field of a form. I wish to disable the automatic pop-up calendar on the form's entry and enable it only on field input. I've looked through the Bootstrap date_picker_options , but none seem to fit the bill.
Regards. |
Beta Was this translation helpful? Give feedback.
Answered by
rchampagneca
Feb 26, 2023
Replies: 1 comment 2 replies
-
Hey @rchampagneca I think you are looking for: https://bootstrap-datepicker.readthedocs.io/en/latest/options.html#showonfocus Let me know. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've solved this using the config parameter in /config/backpack/operations/update.php :
// when the page loads, put the cursor on the first input?
'autoFocusOnFirstField' => false,