The jQuery UI Datepicker is a highly configurable plugin that adds datepicker functionality to your pages
3
votes
0answers
528 views
What's current state-of-the-art for accessibility in jQuery UI Datepicker?
Preamble
We're adding accessibility to some parts of a web portal. One of this parts includes jQuery UI Datepicker, as inline widget, not popup.
We've searched the web and read around, and on jQuery ...
2
votes
0answers
683 views
Customize Jquery-ui datepicker
I wan't to display two weeks in a row in the jquery-ui datepicker, so that it can display a month in three rows. Does any body know how to customize it to do this?
2
votes
0answers
102 views
Stop sj:datepicker from opening Struts2
I have following <sj:datepicker> :
<sj:datepicker
id="dateFrom_id%{index}"
name="billingItems[%{index}].dateFrom"
value="%{billingItems[#index].dateFrom}"
...
2
votes
0answers
353 views
jquery datepicker UTC
So when I save an event, I save it as UTC. Offset is correct for events, and they're shown correctly. I have the datepicker... if I click a day, it returns the local timezone date. So, if I'm at ...
2
votes
0answers
1k views
rails jquery datepicker don't popup TypeError: $(…).datepicker is not a function
I'm trying to get a simple jquery datepicker to work. I've followed the railscasts episode for it, and even was able to download and get his version working. I'm not sure why it's not working on my ...
2
votes
0answers
140 views
How to set the datepicker maxDate based on another datepicker?
I have declared a date picker:
define(["ui/nal.ui.core"], function () {
$.widget("nal.datePi", {
options: {
numberOfMonths: 2
},
_create: function () {
...
2
votes
0answers
127 views
Jquery UI datepicker beforeShowDay is repeating certain dates
When using ui datepicker to render 12 inline calendars I have noticed that the beforeShowDay function is duplicating dates ie
29-01-2013
30-01-2013
31-01-2013
01-02-2013
02-02-2013
03-02-2013
...
2
votes
0answers
155 views
Rails rake assets:precompile produces hundreds of jquery.ui.datepicker
I noticed that rake assets:precompile takes extremely long on my production server, at least 10+ minutes. I went to take a look at my public/assets folder and I noticed that there were hundreds of ...
2
votes
0answers
685 views
jQuery datepicker; hidden by PDF Viewer in Internet Explorer
What my page does:
The user selects a report, selects some parameters and then click the preview button, which calls crystal reports to run the report and export the result as a PDF. I have a DIV ...
1
vote
0answers
29 views
JQueryUI Datepicker - how to hi-light days before/after selected date on mouse hover?
http://jsfiddle.net/K5upK/
I've been trying to figure out how to hi-light all days before/after a selected date but I can't seem to get the background colors for the table cells to change while ...
1
vote
0answers
84 views
Jquery datepicker highlight specific dates fetched from ajax
I am using jquery date picker (http://api.jqueryui.com/datepicker/) in my page. In the page I have a dropdown for program list. Beside the dropdown there is a textbox on clicking which will open the ...
1
vote
0answers
44 views
Jquery Datepicker changing format on reloading the page
I am using Jquery DatePicker for my application with the format dd/mm/yy. The code i am using to get it is below.
$(function(){
$("#demandStartDate").datepicker({showAnim: 'clip', inline: ...
1
vote
0answers
368 views
Set UTC date in jQuery UI Datepicker
I have this snippet:
var _datePicker = $(this); // This is inside a cycle
_datePicker.datepicker("setDate", new Date(_datePicker.data("defaultdate")));
And it works ok, but the problem is ...
1
vote
0answers
143 views
jQuery Datepicker reappearing when navigating back to page in IE10
This issue relates to Internet Explorer 10, which is what I'm testing on and doesn't affect my current versions of Firefox or Chrome.
Steps to reproduce in Internet Explorer
Navigate to: ...
1
vote
0answers
299 views
jQuery UI datepicker - Date Range - #to - set first month to display where numberOfMonths = 3 (it defaults to selected days month)
Hi, I have a 2 textboxes (#from and #to), with a date-range between them.
DateRange Datepicker
E.g. #from I select 10 October 2014
(The current popups show October,November,December)
Now at this ...