ember-cli-bootstrap-datepicker
ember-cli-bootstrap-datepicker copied to clipboard
Multiple date-pickers not working
When I try to use two datepickers on one page, only the first one works. Below is my code:
<div class="col-md-2 pull-right date-picker">
<div class="datepicker">
{{bootstrap-datepicker id="1" value=startDate}}
</div>
<span class="input-group-addon">to</span>
<div class="datepicker">
{{bootstrap-datepicker id="2" value=endDate}}
</div>
</div>
Only the first datepicker is functioning properly, and the second one just acts as a text input. I also included a .gif as it appears on my site.