You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, thanks for great datepicker! I found some error when I must use this code after ajax request:
window.fireEvent('domready');
It created another div with class="datepicker", so many div with this class do some wacky result. I fix it with this code (I clear every your hidden datepickers before running Picker class):
$$('.datepicker').each(function(el) {
if (el.getProperty('aria-hidden') != null) el.destroy();
});
@pelikanek can you reproduce your problem in a jsFiddle?
On a fast look at the source I didn't find any domready event handler that could be listening....
Hello, thanks for great datepicker! I found some error when I must use this code after ajax request:
It created another div with class="datepicker", so many div with this class do some wacky result. I fix it with this code (I clear every your hidden datepickers before running Picker class):
and then I use normal code...
The text was updated successfully, but these errors were encountered: