Re: Problem in displaying ValueObject contents using logic tag

2004-01-03 Thread Nisith Dash
yoyu have to specify the class name of the value object in the type attribute of the iterate tag. this will solve the problem - Original Message - From: Sudhakar G [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 02, 2004 12:13 PM Subject: Problem in displaying ValueObject

how to submit action form while invoking a popup

2003-12-30 Thread Nisith Dash
Hi, i am using window.open(url,"childwin",features) to open pop up screen where the url= "" + '/someAction.do?'. I also want to submit the action form of my parent screen so that i can use it in the action class method corresponding to my action mapping someAction.do?. How can in do it

how to submit form using html:link tag

2003-12-08 Thread Nisith Dash
Hi, Can anyone of you help me with this..i have a hyperlink in my JSP on clicking which i want to submit an action form with some request parameters along with the form.Clicking the hyperlink in the JSPshouldideally perform the following task which is done by this _javascript_ below:

Re: how to submit form using html:link tag

2003-12-08 Thread Nisith Dash
Message- From: Nisith Dash [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 7:28 AM To: Struts Users Mailing List Subject: how to submit form using html:link tag Hi, Can anyone of you help me with this..i have a hyperlink in my JSP on clicking which i want to submit an action

query.

2003-12-04 Thread Nisith Dash
is it possible to check within a struts action class whether any action form element inthe JSP is enabled or disabled. regards, ** Message from InterScan E-Mail VirusWall NT ** ** No virus found in attached file noname.htm ** No virus found in attached file noname.htm NO VIRUS

Re: Design Pattern question

2003-11-19 Thread Nisith Dash
hi, Once you have retrieved the data in your action from the form bean, you can put it in the request scope of the action class execute method. The same will be available when you get forwarded to the next JSP in the request scope of the second JSP page which can the be used to for prepopulation.

hi..

2003-10-22 Thread Nisith Dash
Hi, is there any way in which i can access the value of the html:option within the scriptlet html:select property="productArea" styleClass="inputCellNum"html:option value="343"Business Information/html:optionhtml:option value="23" Consumer Credit

Using set-property attribute in action class

2003-10-07 Thread Nisith Dash
How can i access the propery of a bean which i have set in the struts config file using set-property in my action class. thanks, DISCLAIMER: The information contained in this message is intended only and solely for the addressed individual or entity indicated in this message and for the

action form submission

2003-10-06 Thread Nisith Dash
Hi , can anybody tell me how i can usea _javascript_ in my JSP page to open a new pop up window and at the same time submit my parent action form to this new popup window.As such I am not able toreference this action form within the action class defined for the pop up window. Any

Re: stopping resetting of the form bean

2003-09-29 Thread Nisith Dash
Hi Andrew, I 'll be grateful if you could provide me some insight in to the following: I want to submit an action form using a javascript. The action class for this action form has to open a popup window with some results. I am using the following java script in the main struts-jsp file on

stopping resetting of the form bean

2003-09-28 Thread Nisith Dash
how can i prevent reset method from being called automatically everytime i call the execute method ofany action class. Thanks in advance Nisith ** Message from InterScan E-Mail VirusWall NT ** ** No virus found in attached file noname.htm ** No virus found in attached file

how to submit a action form using a javascript(pop-up).

2003-09-26 Thread Nisith Dash
Hi all, I have a problem and need you help for resolution.Ihave a JSP struts page with an action form with typically save,delete buttons.One of the fields in this form is a search criteria field with a Go button which should basically display the results in a new pop up window.I have