I'm having trouble adjusting the position of a datepicker from bootstrap, specifically changing it from right to left.
Here is the HTML code I am using:
<div class="col-sm-8 input-group date " id="dpYears" data-date="12-02-2012" data-date-format="dd-mm-yyyy" data-date-viewmode="years">
<input class="form-control" type="text" readonly="" value="">
<span class="input-group-addon"><i class="glyphicon glyphicon-list-alt"></i></span>
</div>
Link to the website in question.
I attempted to change the position with the following code:
$("#dpYears").datepicker({
place: bottom-left
});
Unfortunately, this solution did not work as expected.