I have implemented datetimepicker as follows:
$('#txtStartDate').datetimepicker({ useCurrent: false, locale: _defaultCulture[0], format: 'L' });
$('#txtEndDate').datetimepicker({ useCurrent: false, locale: _defaultCulture[0], format: 'L' });
Can anyone tell how can I disable date before to current/today's date?
I read the documentation on http://eonasdan.github.io/bootstrap-datetimepicker/Options/#mindate, but not able to implement as it is.