The jQuery UI Datepicker is a highly configurable plugin that adds datepicker functionality to your pages
0
votes
0answers
6 views
dd-mm-yy from jquery UI datepicker throwing error in c#
i'm using Datepicker and from it 25-06-1989(in dd-mm-yy format) value is coming in text box. But when i'm trying to convert this into c# DateTime its throwing error.
i used
...
0
votes
2answers
30 views
jQuery UI Datepicker weird behavior
I'm having a weird problem while working with a simple datepicker using jqueryUI. I simply want to show a two month calendar with LAST month and current month. I used this code:
$(function () {
...
0
votes
0answers
26 views
jQuery UI spawns second modal
I'm trying to add a datepicker to an input inside of a modal. The problem is that when I call it, it actually spawns a second modal which contains the input element I'm trying to assign a datepicker ...
0
votes
1answer
32 views
jQuery DatePicker - dates have to be one day apart, but there's a bug if the start date is tomorrow
I'm using jQuery DatePicker to ensure that a departure date is at least 1 day after an arrival date. I got the code to do this from this question.
However, I've just noticed that if I choose tomorrow ...
3
votes
1answer
44 views
Jquery Datepicker returning Monday-Friday only
What I'm trying to do:
I'm trying to create a datepicker that when a date is selected it will return a date 2 days or 48 hours later, only during a work week (Monday-Friday) in another input field.
...
2
votes
1answer
137 views
jQuery Mobile Page won't load if jQuery UI widget (datepicker) called on the page?
I am using jQuery Mobile primarily in building this site, but I've included jQuery UI for a few features missing from Mobile such as a date picker (for a part of the site primarily accessed form ...
4
votes
3answers
2k views
jQuery UI datepicker doesn't hide when click outside
I found a problem with jQuery UI Datepicker on my site.
When I click on the input , it does show a datepicker properly.
Nevertheless, when I don't select any date and I just click outside the ...
1
vote
2answers
6k views
jQuery UI Datepicker - onSelect get the selected date +3 days
I try to create a date range by using the jQuery UI datepicker, using two text fields. The first text field "start_date" will set the start date and the second text field "end_date" will set the end ...
1
vote
1answer
2k views
jquery datepicker adding custom button
I'm trying to add a custom button to the button panel of jquey's datepicker. When I apply the following code though nothing happens:
$('.date-picker').datepicker( {
changeMonth: true,
...
12
votes
6answers
10k views
jQuery UI Datepicker: How do I clear/reset the datepicker calendar?
How do I reset the datepicker calendar values?.. The min and max date restrictions?
The problem is that when I clear the dates (by deleting the textbox values), the previous date restrictions are ...
19
votes
14answers
55k views
How to get current date in jquery?
How would I use jQuery UI's datepicker to get the current date in the format yyyy/mm/dd?
3
votes
2answers
19k views
How do I format date in jQuery datetimepicker?
I use jQuery datetimepicker which was extended from jQuery datepicker to pick not only date but time too.
I want to set date/time format this way: dd-mm-yyyy @ hh:mm
...
22
votes
5answers
14k views
How do I connect jQuery Datepicker to my Ruby on Rails form?
I'm trying to use the jQuery Datepicker to set a date field in my Ruby on Rails form, but I can't work out how to do it. Can someone point me in the right direction?
5
votes
3answers
35k views
getDate with Jquery Datepicker
i am trying to get date from my implementation of jquery date picker, add it to a string and display the resulting image in my div. Something however is just not working. Can anyone check out the code ...
108
votes
14answers
170k views
jQuery UI DatePicker - Change Date Format
I am using the UI DatePicker from jQuery UI as the stand alone picker.. i have this code
<div id="datepicker"></div>
And the follow JS
$('#datepicker').datepicker();
When i try to ...