0
votes
1answer
464 views

jQuery datepicker doesn't appear in Firefox

I have an input form using FLAT UI KIT that MUST contain a datepicker, so I chose to use jQuery's widget. But when I run it in Chrome the datepicker shows up, whilet on Firefox it is shows as a simple ...
0
votes
2answers
457 views

Bootstrap Datepicker unable to set start/end dates

Here is code: <input type="text" class="datepicker" id="flight_start" placeholder="mm-dd-yyyy" data-date-format="mm-dd-yyyy"> ... <script src="/ui/js/jquery.js"></script> ...
2
votes
2answers
2k views

Twitter Bootstrap datepicker Formatting Issue

I am using twitter boostrap datepicker in mvc4 application. In my Model, I am setting date property as- [DisplayName("Date Last Modified")] [DisplayFormat(DataFormatString = "{0:dd/MMM/yyyy}")] ...
0
votes
0answers
347 views

Bootstrap: Jquery version conflict for validation and datepicker

I'm creating a web page using bootstrap. In particular I'm implementing a form in which I want validation. One field of the form is a date, so I want use datepicker. So my goals are validation show ...
0
votes
1answer
589 views

Migrate bootstrap-datepicker to jQuery UI datepicker

In bootstrap-datepicker http://www.eyecon.ro/bootstrap-datepicker/ this work: $('#form_field').datepicker().on('changeDate', calc_func); but in jQuery UI not working. How to fix/change it? ...
3
votes
3answers
2k views

Referencing a Bootstrap icon within jQuery datepicker buttonImage attribute?

What value should I be using for the jQuery datepicker buttonImage attribute? I would like to use the Bootstrap calendar icon with the jQuery datepicker. I can use the icon image in the html page ...
0
votes
0answers
232 views

Exclude Weekends optionally from datepicker?

I have 2 datepickers which allows the user to 1) Choose the start date id="datepicker_start" and end date id="datepicker_end" OR 2) Choose the number of days they want the project to be from ...
1
vote
1answer
2k views

extend bootstrap datepicker function smartly

I'm working on date picker based on Twitter Bootstrap which using a datepicker from https://github.com/eternicode/bootstrap-datepicker . I wanted to extend do something like which allow users to ...
0
votes
1answer
517 views

How to set end date not less than the start date in Twitter bootstrap's DateRangePicker?

Im using twitter bootstrap's daterangepicker... I have a start date and an end date... Problem here is...everytime i select a daterange...Start date can be greater than the end date(vice versa) when ...
0
votes
1answer
2k views

JQuery-UI and Bootstrap Conflicts

I have a Rails 3.2.5 app that is using Twitter Bootstrap. I am trying to use the JQuery UI datepicker. I have Googled this for days looking for a solution and can't find anything. I have a text field ...
4
votes
2answers
9k views

How to restrict the selectable date ranges in Bootstrap Datepicker?

I need to use a datepicker which provides me with an option of restricting the selectable dates. We had been using jQuery UI which used to support it using minDate, maxDate options. ...
0
votes
1answer
257 views

jQuery with Rails issue - datepicker()

I have a rails application and I want to add the jQuery datepicker, to show when the user selects a field in a form. The field is built using the following code: <%= f.text_field ...
3
votes
2answers
10k views

Twitter bootstrap + jquery-ui-datepicker on rails?

Is there any known method to have a date input working while using Twitter Bootstrap? datepicker currently looks like a mess and it doesn't look like there is an acceptable alternative in their ...