I'm using the datetime picker from this site: http://eonasdan.github.io/bootstrap-datetimepicker which works fine.
Here we can set the minDate and Max Date like this:
$(".timepic").datetimepicker({ minDate:'2014-05-03', maxDate: '2014-05-04', });
I'm trying to implement the same with date time say:
$(".timepic").datetimepicker({ minDate:'2014-05-03 12:15:04', maxDate: '2014-05-04 15:15:25', });
so that the user cannot pick the time beyond and below the mentioned limit. Had any one has got the same problem?