I've implemented the plugin from https://github.com/uxsolutions/bootstrap-datepicker
Check out the JSFiddle demo: https://jsfiddle.net/j3b089gr/
In my example, I have the calendar displayed along with the HTML code:
<div class="row">
<div class="col-5">first column</div>
<div class="col-7">
<input class="datepicker" data-date-format="dd/mm/yyyy">
</div>
</div>
Additionally, here is the corresponding JavaScript:
$('#datepicker').datepicker();
Despite my efforts, I'm facing an issue where the calendar only appears within the col-7
section. How can I make the calendar display in full screen mode?