soulim / ember-cli-bootstrap-datepicker

Datepicker component for Ember CLI
http://sul.im/ember-cli-bootstrap-datepicker
MIT License
67 stars 57 forks source link

Multiple date-pickers not working #90

Open jfuqua390 opened 7 years ago

jfuqua390 commented 7 years ago

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.

multiple date picker issue