Pickadate.js
81–90 of 130 posts
Re: Pickadate.js
#82Earlier quoted context omitted.
It's still happening. Now (unlike before) it does show the widgets, but Chrome goes up to 100% CPU and nothing happens when I click the widgets.
I can't reproduce- what version of chrome are you using? I'm re-evaluating all my loops to increase general safety.
It's not just loops that can trigger this stuff. It's also callbacks that trigger the same callbacks.
Re: Pickadate.js
#83Re: Pickadate.js
#84Earlier quoted context omitted.
It's still happening. Now (unlike before) it does show the widgets, but Chrome goes up to 100% CPU and nothing happens when I click the widgets.
I can't reproduce- what version of chrome are you using? I'm re-evaluating all my loops to increase general safety.
Re: Pickadate.js
#85Earlier quoted context omitted.
It's still happening. Now (unlike before) it does show the widgets, but Chrome goes up to 100% CPU and nothing happens when I click the widgets.
I can't reproduce- what version of chrome are you using? I'm re-evaluating all my loops to increase general safety.
d = new Date(base);
d.setDate(d.getDate() + 1);
Changing rel() to do this fixes the loop problem, but something else is surely wrong, because the result page now looks like this: http://i.imgur.com/ZUAJg.pngRe: Pickadate.js
#86Earlier quoted context omitted.
Support for input type="date" can be tested by creating an element like that and checking the type attribute. But how can you tell if the browser has support for the native picker? You can't. That is why this picker takes the approach of changing the type date always to text to prevent double date pickers.
But how can you tell if the browser has support for the native picker? You can't. That's what I was wondering. If there were a way, it'd be pretty awesome to use a library like this as a polyfill rather than as a separate thing you attach to text inputs.
Re: Pickadate.js
#87Re: Pickadate.js
#88When pairing this up with jqueryui js on the same page, none of it seems to be working. Not sure why, seems to not have the proper name spacing?
Re: Pickadate.js
#89If it supported keyboard input, that problem would be solved.