Ok I am at my wits end here.
I have a page with 3 frames. (topFirst, topSecond, botton). AFTER frame1 is updated, I would like to refresh frame3. However, AFTER frame3 has an update, frame1 needs to be refreshed. It's all fine and good if I say 'onload="parent.topFirst.location.href='
/ats/budget/frame1.jsp'; "' from Frame3. But of course if I put an onload statement in Frame1 as well, they will be in an endless loop.
I would like to be able to insert some code on the onclick of my Update button on Frame1, but it only seems to refresh frame3 BEFORE all the submitting is done and really it needs to be done after changes have been made. This is what I mean-
<input type="submit" name="save" value="Update" onClick="setAction('budget_update'); parent.bottom.location.href='/ats/budget/f
rame3.jsp' " >
Hope that makes sense and please help!!