Bootstrap 3.0 RC1 compatible datapicker

Start training Bootstrap. I am writing a site prototype for my work, and I need the datepicker component. Does anyone know a component compatible with the new version of Bootstrap, 3.0 RC1? Thanks in advance.

+8
twitter-bootstrap datepicker
source share
2 answers

Finally, I found a viable BS3 datpicker component here ; it is WIP, but it is acceptable as I am at the prototype stage of my project. I hope someone finds this helpful.

Btw this component is not yet listed in the components gallery of Bootstrap, Bootsnipp . / p>

EDIT - this component is now listed in Bootsnipp

EDIT . This is compatible with the latest stable version of BS3.

+13
source share

You can use the standard and well-known jquery Ui datepicker, it is well documented http://jqueryui.com/datepicker/ this works fine with bootstrap, as it happens with jquery-ui.min.js you can use it simply by putting this script

$(document).ready(function () { $('.date').datepicker({ //Your options here }); )}; 

with <input class="date" />

Edit

BootStrap It has a datePicker https://github.com/eternicode/bootstrap-datepicker if you want to use a common layout

0
source share

All Articles