ember-cli-bootstrap-datepicker
ember-cli-bootstrap-datepicker copied to clipboard
Datepicker component for Ember CLI
I am currently trying to edit a form and since my object is a moment.js object instead of a Date object, it's not binding to the control. My setup: I...
Hey, looks solid stuff. Good job. However what I'm missing is a way to set the picker to component mode. Is that possible? http://bootstrap-datepicker.readthedocs.org/en/release/markup.html#component What i'd like to have is...
There is at least one missing configurable option that one can use in pure bootstrap datepicker but can not use via this facade.
My last pull request failed on Travis because the tests hang. Pinning the jQuery version fixed that on my machine. See https://github.com/ember-cli/ember-cli/issues/5317
Closes issue #53.
Hey, nice plugin! I've noticed while using it that the value is represented as a date object which is kind of troubling when binding it to a query param (since...
Is there anyway to pass a parameter to the action hooks on this component? Right now, I have this: ``` js {{bootstrap-datepicker value=model.purchase_date format='mm/dd/yyyy' name='purchase_date' class='form-control' id='purchase_date' changeDate='calculateNextAppt'}} ``` But...
Choosing a date on the calendar _does_ change the component's `value` property but changing the value property through an Ember `set()` -- which also updates the property as expected --...
I would like to bind the following date to a date picker. Any idea? Thanks. date value: 2014-12-31T00:00:00 html: {{bootstrap-datepicker autoclose=true value=model.date format="yyyy/mm/dd" class="form-control" placeholder="Select a date" clearBtn=true todayHighlight=true}}
Hi guys! I've found a problem when i use the datepicker with endDate. If endDate is defined, i can't set the date manually via input. The problem occurs when i...