Re: Probably [another] dumb question
- From: Ed Jay <edMbj@xxxxxxxxxxxx>
- Date: Fri, 30 Dec 2005 20:13:39 -0800
Randy Webb <HikksNotAtHome@xxxxxxx> wrote:
>Ed Jay said the following on 12/30/2005 3:38 PM:
>> I'm using history.go(-n) to return to a page for editing without
>> refreshing or reinitializing the page. I want to modify the page within
>> the script, but until I return to the page, the element I wish to modify
>> doesn't exist. IOW,
>>
>> function editPage() {
>> history.go(-n);
>> /* modify the target page */
>> } /* return to the modified target page
>>
>> How do I effect the changes to the page before exiting the script?
>
>Well, after you history.go you aren't on that page anymore so nothing
>after that statement should be executed.
>
>If you are wanting the reverse:
>
>function editPage(){
>/*modify the target page
>return to the modified page */
>history.go(-1)
>}
>
>Then that is damn near impossible. You can't edit a page that isn't loaded.
I understand. I'm looking for a way to load a page from the cache and
modify it from within the script. The problem I have is that apparently
the page doesn't get loaded until I exit the script. I am/was looking for
a way around it.
The only thing I can think of is to modify the page when I submit the
form, so if I return to it I'm in the 'edit mode.'
The difference between normal and edit modes is that in the normal mode,
the form is submitted to the next page in order, whereas in the edit mode
the form is submitted to the final page. There are six pages of data entry
and a final report page. I want to return to individual pages in the edit
mode from the final page and return to the final page after editing so I
don't have to re-enter the data on subsequent pages.
I can, of course, mark a page to be in the edit mode when I submit it the
first time, but the guy entering data could conceivably realize he made an
error and use his browser's back button to return to correct the problem,
and then submit the corrected data only to find that he skipped over empty
pages to get to the final page.
Yes, I could provide instructions to not do it, but I'm trying to make my
app damned-fool proof.
--
Ed Jay (remove M to respond by email)
.
- Follow-Ups:
- Re: Probably [another] dumb question
- From: Randy Webb
- Re: Probably [another] dumb question
- References:
- Probably [another] dumb question
- From: Ed Jay
- Re: Probably [another] dumb question
- From: Randy Webb
- Probably [another] dumb question
- Prev by Date: Re: looking for a job as a html, javascript developer
- Next by Date: Re: How to list the statement of all var ?
- Previous by thread: Re: Probably [another] dumb question
- Next by thread: Re: Probably [another] dumb question
- Index(es):