Pro Time Picker Hide Event #829
toomanylogins
started this conversation in
General
Replies: 1 comment 1 reply
-
Resolved this by adding custom class to confirm button and getting click event. Still not sure why hide event not working though. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is the time picker hide event triggered when the ok or cancel buttons are clicked for the time picker ?
` endTime.addEventListener('hide.coreui.time-picker', (timeString, localeTimeString, date) => {
$('#duration').attr('data-coreui-time', myTimer.getTimeValues().toString());
const duration = document.getElementById('duration');
coreui.TimePicker.getInstance(duration).update();
`
I cannot seem to trigger the event ? The timeChange.coreui.time-picker is working but trying to get the event on OK or cancel
Beta Was this translation helpful? Give feedback.
All reactions