Get selected date when using Inline mode. #2823
-
@Eonasdan How can I get the selected date when using inline mode? How to write this |
Beta Was this translation helpful? Give feedback.
Answered by
Eonasdan
May 29, 2023
Replies: 1 comment 1 reply
-
Events are dispatched to the attached element and an input (if there is one) so for your example: document.getElementById('datePicker').addEventListener('change.td', (e) => {
console.log(e);
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Anzil-Aufait
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Events are dispatched to the attached element and an input (if there is one) so for your example: