Hi,
This is a JQuery bug. It unnecessarily called our initialization script a second time after the browser already called it once. It should not do that.
To demonstrate the problem, run the following code:
Code: HTML/ASPX
<div id="AdditonalPatientData" >
<div>
window.alert("Hi!");
</div>
</div>
You will see the alert message when browser loads the page, then again when JQuery's dialog is called.
Unfortunately it appears that the only way to fix this problem is to change JQuery code. You can search online for "domManip" and you will see a lot of people complaining about this problem. JQuery developers seem to have promised to fix it but the latest version still does not work.
Thanks!