Using Nested Extension

2003-04-03 Thread Ritesh Singhal
Title: Message Hi All,   Has anybody used Sruts Nested Extension with Struts 1.0.2. If yes, please let me know what all I need to configure to start using this nested extension.   Regards Ritesh - To unsubscribe, e-mail: [EMA

RE: Session bean lifecycle.......

2003-04-02 Thread Ritesh Singhal
Yes, u r right. U can do all the things u mentioned in ur mail. Regards Ritesh -Original Message- From: Al Willingham [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 9:05 AM To: [EMAIL PROTECTED] Subject: Session bean lifecycle... Hi, Is is true that a session bean gets c

RE: Session beans are shared across multiplae instances of browsers!

2003-03-31 Thread Ritesh Singhal
Do you guys have any openings in Xerox ?? Whats the location of the DC ? And how much they pay? -Original Message- From: Oguz Kologlu [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 5:34 PM To: Struts Users Mailing List Subject: RE: Session beans are shared across multiplae instanc

RE: Session beans are shared across multiplae instances of browsers!

2003-03-31 Thread Ritesh Singhal
Shilpi, If you are opening up the new browser window by pressing CTRL+N then the session will be shared. To avoid this always open the browser as a new process from your desktop menu. Regards Ritesh -Original Message- From: Jain, Shilpi [mailto:[EMAIL PROTECTED] Sent: Monday, March 31,

RE: Setting and Getting indexed property

2003-03-26 Thread Ritesh Singhal
, March 26, 2003 7:37 PM To: [EMAIL PROTECTED] Subject: RE: Setting and Getting indexed property Check the indexed getters n Form...If the beanList in form is empty,The beans are added as required when getter is called.. I was referring to this... -Original Message- From: Ritesh Singhal

RE: Setting and Getting indexed property

2003-03-26 Thread Ritesh Singhal
indexed property look at the following message in the archive... http://marc.theaimsgroup.com/?l=struts-user&m=104815589928698&w=2 -Original Message- From: Ritesh Singhal [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 1:55 PM To: Struts Users Mailing List Subject: RE: Set

RE: Setting and Getting indexed property

2003-03-26 Thread Ritesh Singhal
esday, March 26, 2003 6:06 PM To: [EMAIL PROTECTED] Subject: RE: Setting and Getting indexed property U need to use lazy initialiszation. Search the mail archive...I had replied some similar mail... regards, Shirish -Original Message- From: Ritesh Singhal [mailto:[EMAIL PROTECTED]

Setting and Getting indexed property

2003-03-26 Thread Ritesh Singhal
Hi All, I am having problem setting and getting indexed property of a form bean. I have a form bean: public class ExampleForm extends ActionForm { private String id[]; private String name[]; private String address[]; public String getIdIndexed( int index ) { return (

Pupulating Table in edit mode

2003-03-19 Thread Ritesh Singhal
Title: Message Hi All,   I have a screen in which I displays some data in a table format. Now the columns of this table will be submitted as array in to the form bean. So we have a column name "status" we will have methods in form bean like: setStatus(String[] status) String[] getStatus()

RE: Action Form Design Problem

2003-03-19 Thread Ritesh Singhal
Yes, session propagates to child window. The problem is, if we have single form bean for all the data, then the data is not logically structured, we are mixing all kind of logically separate entities in single form bean. Can we have separate form beans for each of the popup and get all the data in

Rendering alternate rows of a table in Struts

2003-02-07 Thread Ritesh Singhal
Hi All, I am using logic iterate tag to iterate over a collection and display the contents of the collection in the form of a table. I want to render the alternate rows with different background colours. I don't want to use scriptlet for finding the row number and set the colour. Is there any Strut

RE: Passing parameter in a pop up window

2003-01-30 Thread Ritesh Singhal
Subject: RE: Passing parameter in a pop up window Add the id to url. something like MM_openBrWindow('AgreementList.do?id=' , ...); > -Original Message- > From: Ritesh Singhal [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 30, 2003 9:03 AM > To: Struts Users

RE: java.util.date in edit form

2003-01-30 Thread Ritesh Singhal
Since it's a request parameter it will go as a String in the form bean. So you must have date field as a String in the form bean. Later on you can convert that to a Date object by using java.text.SimpleDateFormat class. Regards Ritesh -Original Message- From: Softwareentwicklung Hauschel

Passing parameter in a pop up window

2003-01-30 Thread Ritesh Singhal
I want to have a link like this: Where my javascript function is: function MM_openBrWindow(theURL,winName,features) { window.open(theURL,winName,features); } Now the problem is how should I pass the parameter "id" in the popup window. Also on clicking on the link, parent window sho

RE: Passing parameter in a pop up window

2003-01-30 Thread Ritesh Singhal
I want to > have a link like > this: > > paramName="customerDetails" > paramProperty="customerId" > onClick="MM_openBrWindow('AgreementList.do','popup','scrollbars=yes,widt > h=1000,height=500,left=10,top=100')"> > > Where my javascript function is: > > function MM_openBrWindow(theURL,winName,f

RE: Passing parameter in a pop up window

2003-01-29 Thread Ritesh Singhal
,widt h=1000,height=500,left=10,top=100')" hope this helps Ashish --- Ritesh Singhal <[EMAIL PROTECTED]> wrote: > Its good that it could be done. But how?? I want to > have a link like > this: > > paramName="customerDetails" > paramProperty="custom

RE: Passing parameter in a pop up window

2003-01-29 Thread Ritesh Singhal
an send it using html:link query string. Regards Puneet - Original Message - From: "Ritesh Singhal" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, January 29, 2003 2:09 PM Subject: Passing parameter in a pop up

Passing parameter in a pop up window

2003-01-29 Thread Ritesh Singhal
Hi All, I have a requirement of passing a parameter in a popup window. I have link on some jsp page, on clicking of that link it should open a new window. Now in this window I want pass a parameter also as part of query string. I don't think you can do it using html:link. Please help me if anyone