Hi, I have seen the pager. How are you getting it to run with iterate tags. I thought you had to keep going back to the database to get the next set of information.
Thanks, Jack -----Original Message----- From: Mark [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 11:02 PM To: [EMAIL PROTECTED] Subject: Re: More Than Form On A JSP I have found that I needed to do this: MapActionForm myForm=(MapActionForm)actionForm; request.setAttribute("mapForm",myForm); to get this to work. I dont know why, but my form loses visibility like yours. the above seemed to rectify the situation. There is a nify Pager component in Karapan Sapi Struts Generator that works quite well with the iterate tag's offset parameter. I have embedded this into my form just as you have done, and it worked good. Regards, Mark At 02:38 PM 2/26/2003 -0800, you wrote: >I am developing an architecture for the rest of my >development staff to use on a new J2EE project >starting next month. > >I have the following situation: > .......... > >All this allows my developers to reuse this HTML table >logic on any JSP that has a similar appearance (static >data at the top and scrollable data at the bottom). > >There is a problem however. After the page is >redisplayed, the top part of the page contains no >data. All of it has been lost because the form >associated with it is out of scope (it was scoped to >the request). > >I don't want to scope the forms to the session as they >will accumulate as the user navigates through the >application, plus the data in them will be stale if >the user returns to a JSP they were at a while ago. > >Does anyone have any ideas how to solve this? > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

