chandrajavin / jquery-datepicker

Automatically exported from code.google.com/p/jquery-datepicker
0 stars 0 forks source link

jQuery datePicker demos not working #337

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Only the first demo 'simple datePicker' seems to be working

http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/

I was having trouble getting datePicker set up and noticed that its not 
currently working on your demos page either...

Original issue reported on code.google.com by grif...@rsrcmgmt.com on 9 Feb 2012 at 6:35

GoogleCodeExporter commented 8 years ago
I can confirm the issue in the latest versions of Chrome and Firefox. The weird 
thing is that the code hasn't changed... I think that it may be something to do 
with the "Firebug lite" that is included in the pages conflicting with modern 
browsers but I'm not in the office at the moment to check... I'll try to look 
into it next week if I get a chance.

Thanks for the report!

Original comment by kelvin.l...@gmail.com on 9 Feb 2012 at 7:30

GoogleCodeExporter commented 8 years ago
Problem also present on Chrome and Safari using OSX Lion 10.7.3.

Original comment by myran...@gmail.com on 10 Feb 2012 at 7:26

GoogleCodeExporter commented 8 years ago
It's not working on any version of any browser.
I can confirm IE9, Firefox 3.6, 9 & 10 and latest versions of Safari & Chrome.
Here's the most interesting part - all the previous implementations of mine are 
still working.
And even if I use the old sources from my CDN on a new page it does not work!

Original comment by ntct...@gmail.com on 13 Feb 2012 at 12:27

GoogleCodeExporter commented 8 years ago
I think the problem is with jQuery 1.7 and above. I don't know why though... 
can anyone shed any light on this one? Seems to work fine on 1.6.4 of jQuery.

Original comment by chrismos...@gmail.com on 15 Feb 2012 at 10:44

GoogleCodeExporter commented 8 years ago
I can confirm the problem also. Anybody?

Original comment by borko.ra...@gmail.com on 23 Mar 2012 at 1:24

GoogleCodeExporter commented 8 years ago
Hi,

I also think it is a jquery issue. It stopped working when I moved to 1.7.1.

Original comment by hbourquo@gmail.com on 26 Mar 2012 at 6:21

GoogleCodeExporter commented 8 years ago
With jQuery > 1.7 I found a problem in line 213
  this._dpId = $.event.guid++;

$.event.guid++  returns NaN (I think it is deprecated)

I changed the line to
  this._dpId = $.guid++;

And got a value, but still no joy.

Original comment by wische...@gmail.com on 27 Aug 2013 at 7:46

GoogleCodeExporter commented 8 years ago
The code for the date picker is now hosted on github:

https://github.com/vitch/jQuery-datepicker

If you can provide a pull request with the fix for the problem I'd be happy to 
merge it. I'm afraid I don't currently have any time to work on the date picker 
myself...

Original comment by kelvin.l...@gmail.com on 2 Sep 2013 at 1:53