datepicker

jquery datepicker inputdate highlight

Hi there, I am using latest version of 'Jquery-ui' datepicker. i am trying to make the datepicker readonly(no more selections) with a given input date highlighted. i did not find any way to make it readonly but i was able to highlight a given date to some extent (though today's date appears to be more highlighted). my code looks: $(...

how to refresh datepicker? function .datePickerMultiMonth()

Hi Everybody, Really like datepicker. Thanks a lot for this great library! I have got one question for you based in this example (inline datepicker): http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerMultiMonth5.html I added a "renderCallback" function to disable week days based on checkboxes... (e.g. when saturda...

[WPF/XAML] - Change DatePicker style based on SelectedDate

Hi all, First question here. Anyway, here it goes: I have a XAML Windows with a lot of DatePicker controls (DatePicker from the WPFToolkit on CodePlex). Every DatePicker has a default Value of 1/1/1990 and if no other date is selected, I want (or rather my boss :-) ) to display the Text in gray italic and not in Black. Thus, it makes it...

jquery datepicker problem in ie

Hi, I am using jQuery Date Picker plug-in(flat mode http://www.eyecon.ro/datepicker/), i want to upgrade to jquery v1.3.2. But it's not working in IE, it gives "unknown run time error in line: 12, char: 10947". I appreciate your feedback. ...

jquery datepicker

I`m using datepicker with month and year drop downs. I would like to hide displayed days. How can I do this ? ...

How to set win forms datetime picker to have no default value??

Hi everyone. I am implementing search functionality in WinForms and I search by date range. Thus there are dateForm and dateTo date pickers on the form. By default their values are date time now() and if user do not touch date time pickers at all he will not get any results. Because search will be performed between now() and now(), also...

JQuery Datepicker, can't trigger onSelect event manually!

I am using jquery's datepicker where a list of items is populated from an ajax call whenever a date is picked from an inline datepicker object. The script works perfect except that I can't trigger an onSelect event to populate my initial list of items. I could get around this problem by just populating the list initially using php but I...

Edit form with default Jquery date values, jquery sets current date for field after page is loaded.

$(document).ready(function(){ $('#data_nasterii').datepicker($.datepicker.regional['ro']); // romanian language $('#data_nasterii').datepicker('option', 'changeMonth', true); // dropdown with month $('#data_nasterii').datepicker('option', 'changeYear', true); // dropdown with year $('#data_nasterii').datepicker('option', 'yearRange',...

jquery ui datepicker IE reload or jumps to the top of the page

I am noticing this issue in IE 7 + 8 $('#event-start-date').datepicker({dateFormat:'DD MM dd yy',minDate:'-0d'}); When you pick the date in IE 7 or 8 the page goes to # and reloads the root page I am using jquery 1.4.0 and ui 1.7.2 ...

JQuery UI Datepicker: Making a link trigger datepicker

Hi Guys, I am using JQuery's UI datepicker: http://jqueryui.com/demos/datepicker/ implemented here: http://www.clients.eirestudio.net/dermot/ I want to use a link as the trigger but I can't get it to work. Here is my code: // JQuery UI $("#datepicker").datepicker({ changeMonth: true, changeYear: true, maxDate: '...

How do I make my popup date picker calendar javascript change the text date next to it and update the database?

We use a DHTML calendar picker that only allows you to change the date, which is desired functionality. However, I need to figure out the javascript to change the date next to the calendar picker, as seen in the image below, and popup an "are you sure" message. The above image is one row in a table, so the JS needs to be aware of whic...

grails datePicker data binding

Hi, I've create a modified version of Grails' datePicker tag. It uses exactly the same parameters as the Grails datePicker, but for some reason the Date property of the object that these parameters are bound to is not being set. This class has a property start of type Date and the parameters that are being sent are start_year start_m...

Grails datePicker

Hi, I'm looking for a calendar component for my Grails app. I'm aware that Grails already has the g:datePicker, but it's a bit primitive and not very visually appealing. I've had a look on the contribute-a-tag page and in the grails plugin portals and there's a wide range of options. Rather than trying them all out, I'd be very gratefu...

jQuery.ui.datepicker with Asp.Net MVC dateFormat mapping

Is there somewhere somebody who did a mapping of the c# dateFormat to the datePicker dateFormat, since I already know the C# dateFormat, I don't want to have to check the datepicker documentation everytime I have to build a custom date Format. for exmple, i want to be able to specify in my helper dateFormat of 'dd/MM/yy'(c#) and it woul...

jquery datepicker for ajax content fails after first load

Hi folks, I have a script that generates a modal dialog and inside of that, I would like to put a jquery ui datepicker. I'm currently using the following code: $('#datepicker').live('click', function() { $(this).datepicker({showOn:'both'}).focus(); }); Which works just fine the first time I open the dialog and click on the input bo...

jquery datepicker onselect event handler multiple times

I am trying to handle the same onSelect event on a jquery datePicker object twice. From what i understand the event can be handled multiple times, but when i try this only one of the event handlers gets fired. It seems to fire the second handler, but not the first. How can i handle the same onSelect event twice without overriding the fir...

why is my jquery UI datepicker not defaulting to english

i basically copied the code from here but when i tested my site i saw this: any idea why i am not getting an english calendar ...

JQuery UI datepicker how to show next prev arrows for month navigation?

Exactly as the title says. When I load the datepicker there is nothing on the ends to click onto change month. But you can stil change the month just no visual?? Malcolm ...

Zend Framework - JQuery - Date Picker - Format Date to YYYY-mm-dd

Hi, Im using a JQuery DatePicker in a Zend Framework based application Form. Here is the code for the date picker $this->addElement('datePicker','movie_release_date', array( 'label' => 'Release Date:', 'required'=> false ) ); By default, when you pick the date, it is stored in the text input li...

How to set width of jquuery ui datepicker with multiple months

How can I set the width of the datepicker div when showing multiple months? I've tried changing the css for .ui-datepicker-group and .ui-datepicker-multi, but when I view it in Firebug the width is overwritten. ...