I have a situation where the form submitted on the ADD page, from the ADD NEW action, is now staying forever. When I click Cancel or the X and refresh the page I see that the form did write all of the data into the details table.
This is happening now after Adding a LINK that works the same way as the Master table Details Preview pop-up works.
When I went to the List page of the Details table I wanted to have the same kind of link as the Masters, where in an individual details table record I could hover over that link and it would pop up the Master table record associated with this particular Details table record.
Since doing this on two different users accounts I have the same inaction....the Form is submitted but never disappears when the record is written. I have to cancel or X out the form and refresh the current page to see the new record appear...written perfectly.
My link code is in the source..
<td align="left" valign="middle" class="borderbody" nowrap="nowrap"><a href="doctor_address_doris_list.php?mastertable=reporting_doris_k&masterkey1=2&masterkey2=2008" id="master_doctor_address_doris4" onmouseover="RollDetailsLink.showPopup(this,'doctor_address_doris_detailspreview.php'+this.href.substr(this.href.indexOf('?')));" onmouseout="RollDetailsLink.hidePopup();">Arztadressen Doris
<span id='cntDet_doctor_address_doris_4'>(1)</span>
Apparently, the javascript that is introduced to create this popup cannot coexist on the same page where I am submitting the ADD NEW from.
This javascript code, it seems to me, conflicts with the form code using jquery to dropshadow behind the form.
How can I modify one of these to restore normal ADD NEW form function?