Get time from daterangerpicker having timePicker true #2240
Unanswered
ashishbansal-kmc
asked this question in
Q&A
Replies: 1 comment
-
You can read that form input, or you can look at the first two parameters passed to your "datepickercallback", they're full datetime (moment) objects. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
$('input[name="datetimes"]').daterangepicker({
timePicker: true,
startDate: moment().startOf('hour'),
endDate: moment().startOf('hour').add(32, 'hour'),
minDate:moment(),
maxDate:moment().add(90,'d'),
maxSpan: {
"days": 30
},
locale: {
format: 'M/DD hh:mm A'
}
}, datepickercallback);
so how should i get the values of times selected from the dropdown
.
Beta Was this translation helpful? Give feedback.
All reactions