Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to use the Twitter Bootstrap date picker, I used the above code but its not working.

<html>
    <head>
    <title>DatePicker Demo</title>
    <script src="js/jquery-1.7.1.js"></script>
    <link href="css/datepicker.less" rel="stylesheet" type="text/css" />
    <link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
    <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
    <script src="js/bootstrap-datepicker.js"></script>

    </script>
    </head>
    <body>
    <form >
        <div class="input">
            <input class="small" type="text" value="01/05/2011" data-datepicker="datepicker">
        </div>
    </form>

    </body>
</html>
share|improve this question

8 Answers

up vote 10 down vote accepted

Twitter Bootstrap is incompatible with jQuery UI styles at the moment.

https://github.com/twitter/bootstrap/issues/156

This might help you https://github.com/sferik/rails_admin ( http://rails-admin-tb.herokuapp.com/admin/drafts/new )

share|improve this answer

I found this one which is exactly what you are looking for: http://www.eyecon.ro/bootstrap-datepicker/

Update: This is the github for the link I originally posted: https://github.com/eternicode/bootstrap-datepicker (thanks to @dentarg for digging it up)

share|improve this answer
1  
I just found two forks of this project: github.com/Aymkdn/Datepicker-for-Bootstrap (just an hour old when writing this) and github.com/eternicode/bootstrap-datepicker (linked in the GitHub issue linked in a comment above) – dentarg Apr 2 '12 at 15:14
1  
Nice one @zoop! – cbmeeks Apr 18 '12 at 1:05
1  
@dentarg: thanks, github.com/eternicode/bootstrap-datepicker was perfect. – sstock May 2 '12 at 3:09
The eternicode version doesn't seem to work nicely on IE (surprise, surprise, IE giving problems :D). Was using IE 8.0.7600.16385. – jamiebarrow May 29 '12 at 13:51
This widget is broken, when switching to Month of April, it shows only a few days. – user698585 Jun 9 '12 at 9:17
show 3 more comments

I found an example here.

I have yet to find any good documentation.

share|improve this answer
6  
See github.com/twitter/bootstrap/pull/657 for details. – Karl Bartel Jan 16 '12 at 16:39
1  
Nice, just what I've been looking for! – Erik Jan 24 '12 at 14:30
This is perfect. Works really well. – Matt Setter May 25 '12 at 16:02
1  
Can someone experienced relieve for mortals like me, how to use this please? :) Where can I download the additional js for datepicker? And all I do is adding data-datepicker="datepicker" to the input field? – Kave Jul 8 '12 at 20:04
1  
As nicely as that integrates with the theme, nowadays, it seems regressive to use an input[type=text] with a JS-datepicker versus input[type=date] which will have an appropriate (except IE) client-side interface which is key for touch-screens. Field-validation would also need to be handled by custom JS, if going the text route. – Alastair Dec 2 '12 at 5:53
show 1 more comment

I got the aristo theme to work without issue with twitter bootstrap.

share|improve this answer

Create a custom theme with themeroller, then on the download page, choose 'Advanced Theme Settings'. Set the CSS scope to 'body'. Since the CSS rules you download will be prefixed with the body tag selector, they'll have higher specificity and will override bootstrap rules.

share|improve this answer

Check out Jquery Bootstrap:

http://jslegers.github.com/jquery-bootstrap/

share|improve this answer

I was having the same problem but when I created a test project, to my surprise, datepicker worked perfectly using Bootstrap v2.0.2 and Jquery UI 1.8.11. Here are the scripts i'm including:

        <link href="@Url.Content("~/Content/bootstrap.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/bootstrap-responsive.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/themes/base/jquery.ui.all.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery-ui-1.8.11.min.js")" type="text/javascript"></script>
share|improve this answer

add

z-index:1151;

to the style sheet in

.datepicker
share|improve this answer

protected by Andrew Whitaker Sep 17 '12 at 19:26

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.