Configured the datetimepicker for an order_date input field that works fine.
$('#order_date').datetimepicker({
dateFormat: 'yy-mm-dd',
timeFormat: 'HH:mm:ss',
showSecond: false,
stepMinute: 15
});
The requirement is to pick multiple datetimes so that same order is created for multiple order_dates. What is the proper way to do this? Is it possible using a select2 multi-select dropdown?