Hello,
Thanks for your Patience!
The Date Range Picker already supports Time in the Range. Please check out the DATE AND TIME RANGE PICKER: Example on the Demos: http://themes.semicolonweb.com/html/canvas/component-datepicker.php . Consider using the following code to have a Time Range on the Same Dates:
$(".daterange2").daterangepicker({
"opens": "center",
locale: {
format: 'MM/DD/YYYY h:mm A'
},
"timePicker": true,
"timePicker24Hour": true,
"timePickerSeconds": true,
"startDate": "06/19/2017",
"endDate": "06/19/2017",
"minDate": "06/19/2017",
"maxDate": "06/19/2017",
"buttonClasses": "button button-rounded button-mini nomargin",
"applyClass": "button-color",
"cancelClass": "button-light"
});
You can also generate your own Date Range Picker here: http://www.daterangepicker.com/#config .
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.