Re: few questions about design struts application

2002-08-27 Thread Struts Newsgroup (@Basebeans.com)
Subject: Re: few questions about design struts application From: slickdev <[EMAIL PROTECTED]> === I am no big expert, but I've been able to develop with Struts to my growing satisfaction after studying the struts user guide many times over. - Original Message - From: "

Re: few questions about design struts application

2002-08-27 Thread slickdev
I am no big expert, but I've been able to develop with Struts to my growing satisfaction after studying the struts user guide many times over. - Original Message - From: "Ashish Kulkarni" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, August 27, 200

RE: few questions about design struts application

2002-08-27 Thread Ashish Kulkarni
Hi, but how can i forward the request to different jsp, from one tag, this will forward the request to one Action class, how can i make this action class call different jsp, and i need to put the checkbox as the user may want to delete 10 records at a time, but allow to check only 1 checkbox fo

RE: few questions about design struts application

2002-08-27 Thread Susmita Pati
in ur actionhandler class code for each request... do something lik public static Hashtable getParameters(HttpServletRequest request) { Enumeration enum = request.getParameterNames(); Hashtable parameterContainer = new Hashtable(); while(enum.hasMoreElements()) {

Re: few questions about design struts application

2002-08-27 Thread David Graham
You should have one jsp called edit.jsp that is the add, edit and delete form. I wouldn't use checkboxes with buttons because it's too much trouble. Put links next to each row that say Add - Edit - Delete where the add link points to /app/getEditForm.do?action=add. Then your GetEditFormActi