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?