| <div id="reportrange" style="background: #fff; cursor: pointer; padding: 5px 10px; border: 1px solid #ccc; width: 100%"> | |
| <i class="fa fa-calendar"></i> | |
| <span></span> <i class="fa fa-caret-down"></i> | |
| </div> | |
| <script type="text/javascript"> | |
| $(function() { | |
| var start = moment().subtract(29, 'days'); | |
| var end = moment(); | |
| function cb(start, end) { | |
| $('#reportrange span').html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY')); | |
| } | |
| $('#reportrange').daterangepicker({ | |
| startDate: start, | |
| endDate: end, | |
| ranges: { | |
| 'Today': [moment(), moment()], | |
| 'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')], | |
| 'Last 7 Days': [moment().subtract(6, 'days'), moment()], | |
| 'Last 30 Days': [moment().subtract(29, 'days'), moment()], | |
| 'This Month': [moment().startOf('month'), moment().endOf('month')], | |
| 'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')] | |
| } | |
| }, cb); | |
| cb(start, end); | |
| }); | |
| </script> |
This comment has been minimized.
This comment has been minimized.
|
This comment has been minimized.
This comment has been minimized.
Brian-beepboop
commented
Jun 26, 2019
|
is there a way to do an altFormat like the flatpickr? altFormat | String | "F j, Y" | Exactly the same as date format, but for the altInput field |
This comment has been minimized.
This comment has been minimized.
|
No |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
jhondoedo commentedJun 17, 2019
I have two input field with id "id_start_date" and "id_end_date" . how can i pass the values to this fields in this format "2019-04-24"?