All Questions
12 questions
0
votes
1
answer
909
views
Jquery Datepicker - css
Is there any way to show month input type as number (i.e textbox with up and down arrow) instead of dropdown.
Please help on this. See my demo: https://jsfiddle.net/sharmilashree/VBGKU/1067/
.ui-...
0
votes
0
answers
101
views
Extending JQuery DatePicker for dblclick event and get the class of clicked/selected date (td)
Wondering how can implement following two functionalities for jquery-ui datepicker:
1- dblclick event handling,
2- Get the class(s) of the selected or clicked day (td) within the corresponding event ...
1
vote
1
answer
3k
views
datepicker-ui click on date display popup
I added some events to a datepicker ui calendar (assigned to a div so it's always visible) with an specific title each one. When clicking on any of this special dates I want to show a popup with the ...
0
votes
1
answer
1k
views
Datepicker for each input element in dynamically created rows?
I have a dynamic for loop as shown below. It creates rows with 4 columns. I wanted to add a datepicker for one of the column with input field().
for (var i=0, file; file=o.files[i]; i++) { %}
...
1
vote
1
answer
959
views
Accessibility issue in jquery datepicker
Using jquery datepicker for change month and change year. While testing for accessibility, the tab is not working for the calendar, as in the calendar pops up on using tab, but after that it goes to ...
0
votes
2
answers
1k
views
JQuery datePicker SelectMultiple format dd/mm/yy
Got the datePicker working to select multiple dates. When the user selects multiple dates and closes the calendar the textbox displays the dates in the format:
Thur Jan 03 2013 00:00:00 GMT +0000
Fri ...
2
votes
0
answers
522
views
Show single dropdown for combined month and year in jquery datepicker
Is there a way to show a single dropdown list in the datepicker that displays both the month and the year (e.g. "November 2012") instead of separate dropdown lists (using changeMonth: true, changeYear:...
0
votes
0
answers
954
views
Datepicker startdate/enddate difference exclude weekends and populate input
I am trying to work out the differnce in days (excluding weekends) between a startdate and enddate selected by the user using datepicker.
This number of days then wants to be inputted into the #days ...
37
votes
2
answers
43k
views
jQuery UI Datepicker : how to add clickable events on particular dates?
I want to highlight the dates on jquery datepicker where there are events attached to it (i'm not talking about js event, but real life events :D).
How to pass the event dates to the calendar?
How to ...
0
votes
1
answer
2k
views
How to display the full name of day in datePickerUI?
by default, the datePicker plugin is displaying the short name of day (Su, Mo, Tu, We, Th, Fr, Sa) (dayNamesMin)
I would to display the full name (Sunday....) (dayNames).
How to do it ?
I try it, ...
2
votes
1
answer
843
views
How to validate the Jquery UI- Calendar plugin?
I have used JqueryUI plugin- date picker to display my date.
The format is such that it has Fromdate & Todate.
If I select fromDate: for example 09/28/2010 and
If I select toDate: for example ...
53
votes
8
answers
96k
views
jQuery datepicker- 2 inputs/textboxes and restricting range
I am using the jQuery Datepicker widget with two input boxes, one for the "From" date and the second with the "To" date. I am using the jQuery Datepicker functional demo as a basis for getting the two ...