简体   繁体   中英

How can I pass options to AngularStrap timepicker?

I'm new to AngularJs and after some serious effort, I finally got the AngularStrap DatePicker and TimePicker to work.

Now I'd like to pass some options to the TimePicker to eg use 24-hour format ( showMeridian = false ). Whereas the DatePicker can be configured with HTML5 data attributes (eg data-date-format="dd.mm.yyyy" data-date-weekstart="1" ), this seems not to work with the TimePicker.

How can I pass options to the TimePicker?

Configuration options for both plugins can be set with the use of data attributes.

<div class="bootstrap-timepicker"/>
    <input id="timepicker" data-template="modal" data-minute-step="1" data-modal-backdrop="true" type="text"/>
</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM