sramesh
11-10-2003, 09:42 PM
Hi,
I have a very long form and to edit the information in the long form, I open small windows. After the editing, I want the small window to close and go back to the refreshed main long form and also to the same section of the form that I was editing. This so the user need not scroll down again to reach that section.
For example, with the script here I am able to close the child window, go back to the main form called test_try.cfm and to the section financial info, but the form is not refreshed, so I am not seeing the new edited information. If I remove the #financialinfo, then the main form is refreshed, but the user has to scroll down all the way to get the financialinfo section of the form. Any suggestions ?
<script> opener.document.location.href=
test_try.cfm#financialinfo';self.close();
</script>
thanks
I have a very long form and to edit the information in the long form, I open small windows. After the editing, I want the small window to close and go back to the refreshed main long form and also to the same section of the form that I was editing. This so the user need not scroll down again to reach that section.
For example, with the script here I am able to close the child window, go back to the main form called test_try.cfm and to the section financial info, but the form is not refreshed, so I am not seeing the new edited information. If I remove the #financialinfo, then the main form is refreshed, but the user has to scroll down all the way to get the financialinfo section of the form. Any suggestions ?
<script> opener.document.location.href=
test_try.cfm#financialinfo';self.close();
</script>
thanks