RE: Using multiple ActionServlet's

2001-08-22 Thread Allamsetty, Venkata
Bulk of the work gets done in the perform method of an action class. ActionServlet is nothing but the controller. If your question is reg. use of multiple action classes one delegating a task to the other, the answer is yes. we just need to forward from one action to the other. hope this

RE: how to integrate javascript in struts?

2001-08-22 Thread Allamsetty, Venkata
simply write your javascript between script/script tags, as you would do in the case of a normal html page. thanks -va -Original Message-From: Metehan Selvi [mailto:[EMAIL PROTECTED]]Sent: Wednesday, August 22, 2001 2:03 AMTo: [EMAIL PROTECTED]Subject: how to integrate

RE: forwarding to another action

2001-08-22 Thread Allamsetty, Venkata
from with in the perform method of an action class, call mapping.forward('success'); define the forward tag for 'success' in struts_config.xml -va -Original Message- From: Jan Fredrik Overaasen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 7:29 AM To: '[EMAIL PROTECTED]'

RE: radio buttons

2001-08-08 Thread Allamsetty, Venkata
use the same property name example: html:radio name=dtActionForm property=defaultTime value=5 nbsp;5 Minutes nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;/html:radio html:radio name=dtActionForm property=defaultTime value=10 nbsp;10 Minutes nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;/html:radio html:radio

RE: struts-config.xml question

2001-06-08 Thread Allamsetty, Venkata
you need not have the name attribute in the html:form tag. It can get it from the struts_config file. Do you have setters and getters for all your attributes in the actionform? hope that helps. VA -Original Message- From: Bill Clinton [mailto:[EMAIL PROTECTED]] Sent: Friday, June 08,

RE: struts not reading properties file

2001-04-19 Thread Allamsetty, Venkata
http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html thanks Venkata -Original Message- From: Dinesh Chaturvedi [mailto:[EMAIL PROTECTED]] Sent: Friday, April 20, 2001 12:23 AM To: [EMAIL PROTECTED] Subject: RE: struts not reading properties file Hello Everybody

How to represent a table of select inputs in the ActionForm and in the corresponding HTML?

2001-04-18 Thread Allamsetty, Venkata
Is there a good example that I can use, to represent a table of select inputs ? I tried using a two dimensional array without much success. thanks Venkata Allamsetty

JspException

2001-02-10 Thread Allamsetty, Venkata
Hi, I am trying to get my first Struts application work. I have created defaultTime.jsp which contains a text input for time, DefaultTimeForm , EditDefaultTimeAction and SaveDefaultTimeAction classes. Defined web.xml and struts-config.xml and deployed them appropriately. But when I try

RE: JspException

2001-02-10 Thread Allamsetty, Venkata
Hi, I am trying to get my first Struts application work. I have created defaultTime.jsp which contains a text input for time, DefaultTimeForm , EditDefaultTimeAction and SaveDefaultTimeAction classes. Defined web.xml and struts-config.xml and deployed them appropriately. But when I

RE: Mapping

2001-02-05 Thread Allamsetty, Venkata
Struts is not used in place of std html tags. It helps implement a web application using Model 2 Architecture. see usersguide at http://jakarta.apache.org/struts thanks VA -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 4:52 PM To:

RE: Mapping

2001-02-05 Thread Allamsetty, Venkata
---Original Message----- From: Allamsetty, Venkata [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 5:14 PM To: '[EMAIL PROTECTED]' Subject: RE: Mapping Struts is not used in place of std html tags. It helps implement a web application using Model 2 Architecture. see usersguide