So here is the setup: I have two jquery datepickers, inside a jquery tab, inside a jquery modal dialog window:
\---/\---/\---/_______________
/ /
\ \
/ DATEPICKER1 /
\ \
/ DATEPICKER2 /
\ \
/ /
\ \
/____________________________/
The first datepicker functions normally, but when I try to click a date in the second datepicker it simply activates the first one. Did you follow that? :)
So to sum up, clicking a date in datepicker2 activates datepicker1.
I have no idea why this is happening - they have different ids and names, as outlined below.
To create the datepickers I'm just using:
$(function() {
$("#datepicker1").datepicker();
$("#datepicker2").datepicker();
});
The fields are simply:
<input type="text" id="datepicker1" name="datepicker1" value="" />
<input type="text" id="datepicker2" name="datepicker2" value="" />
I'm using jQuery v1.9.0 and jQueryui v1.10.0.
Any thoughts on this? As a caveat, I am unable to post actual code due to restrictions from my employer, but I can answer most questions if you need any clarification. Any and all help would be greatly appreciated!!