I have a rather frustrating problem where the maximum number of available DatePicker’s on one page seems to be twenty. I can’t find any documentation referring to this.
If I had a page with 100 text boxes, and did the following:
$(document).ready(function() { $('.datepicker').datepicker({ duration: '', dateFormat: 'dd/mm/yy' }); });
Then the first 20 text boxes have the DatePicker, however, when you select an input box after that the DatePicker pops up against the twentieth input box for a date.
This is being done under IE7. Any ideas?
I tested the following code under Firefox 3 on Ubuntu, and all of the text boxes had a DatePicker associated with it. IMHO there shouldn’t be any limit. Could you test my code on your setup and see if it works ?