1
Colleagues,
How do I make the current date on the Find date checked and change the previous dates that are disabled? See:
I managed to disable the previous dates using the code below, but they get black and end up confusing and the current date is not marked.
<!-- datepicker -->
<script src="plugins/datepicker/bootstrap-datepicker.js"></script>
<script>
//Date picker
$('#datepicker').datepicker({
autoclose: true,
startDate: "date"
});
</script>