Datetime picker

What is the best date time pickler for ember?

I don’t have a particular favorite but your best bet to explore the options is Ember Observer

1 Like

I’m using ember-pikaday for dates. As for times, I’m using it as follows:

{{input
        type="time"
        class="form-control"
        required=true
        min="06:00"
        max="22:00"
        disabled=isClosed
        pattern="[0-9]{2}:[0-9]{2}"
        value=holiday.dividedOpens
      }}

The only hick I have is related to browser specific display for the input text field.

1 Like