I have a from that will require multiple dates and or times.
I am using the jquery datepicker that I have been using for a long
time.
I am doing this in a partial for multiple date/times:
I have this for the initialize method:
jQuery(document).ready(function($){
$(’#mopdate[]’).datepicker({ dateFormat: ‘yy-mm-dd’ });
$(’#start_time[]’).timePicker({step: 15, startTime: “00:01”, endTime:
“05:00”, columns: 5})
$(’#end_time[]’).timePicker({step: 15, startTime: “00:01”, endTime:
“05:00”, columns: 5})
$(’#roll_back_time[]’).timePicker({step: 15, startTime: “00:01”,
endTime: “05:00”, columns: 5})
});
None of em appear to work.
Is there a way to get something like this to work?