RE: View data

2001-06-27 Thread Debasish Ghosh
Hi - I am new to Struts. I also have this kind of application where I need to show a lot of data. I understand your solution. But for this, do I need to make any entry in the config file for the jsp which renders the view of the bean. Otherwise, how will it fit in the overall framework of Struts

Re: View data

2001-06-25 Thread Craig R. McClanahan
On Mon, 25 Jun 2001, Jay Walters wrote: Just to bounce this off of people, the ActionForm is really just for handling Form based input data from the user. Yes, that is what it's designed for. What do people do to handle result data which is view only. We are thinking we will just put

RE: View data

2001-06-25 Thread John Schroeder
The application I am developing uses a lot of view only data. We are doing exactly what you mention. We have DAOs that contact the database and return CachedRowSets. These RowSet objects are stored in the proper context and custom tags on the JSP handle the display. Hope this helps... --John

RE: View data

2001-06-25 Thread Andreas Amundin
On Mon, 25 Jun 2001, Jay Walters wrote: What do people do to handle result data which is view only. We are thinking we will just put the model beans into our request object in the action.perform method and pull them out to use in the jsp. Does this make sense? Any reason we should be