I have a DatePicker that used to work fine as a user control. However, now I have to use that same DatePicker user control inside a parent user control (not by my choice). So now with this new implementation, the DatePicker is not functioning as expected. Whenever I would select a date in the picker, it would trigger a partial postback and then not re-render at all - just disappeared. However, I was finally able to get it to re-render after using the Sys.WebForms.pageRequestManager.getInstance().add_pageLoaded method. The problem now is that it won't hold the newly selected dates, it goes back to the date that was selected when the page first loaded.
Basically, I have an UpdatePanel with the UpdateMode set as "Conditional" that utilizes the DatePicker as AsyncPostBackTrigger. The DatePicker is not inside the UpdatePanel and I would prefer it not be unless I absolutely have to. Any ideas as to why the DatePicker would not hold the newly selected values after the partial postback?