Re: Passing parameter in a pop up window

2003-01-30 Thread Gemes Tibor
2003. január 30. 16:22 dátummal Ritesh Singhal ezt írtad: > This will just take it as a string and wont evaluate it. In the final > html link you will see something like > > AgreementList.do?id= False. It will be evaluated as it is supposed. I use this extensively. Hth, Tib > Add the id to url

RE: Passing parameter in a pop up window

2003-01-30 Thread Durham David Cntr 805CSS/SCBE
Well yeah, outside the was what I was thinking, but that's just one way to do it. > -Original Message- > From: Ritesh Singhal [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 30, 2003 9:23 AM > To: Struts Users Mailing List > Subject: RE: Passing paramete

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: Passing parameter in a pop up window

2003-01-30 Thread Jerome Jacobsen
Not sure, but maybe this: Click Me > -Original Message- > From: Ritesh Singhal [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 30, 2003 10:03 AM > To: Struts Users Mailing List > Subject: Passing parameter in a pop up window > > > I want

RE: Passing parameter in a pop up window

2003-01-30 Thread John Espey
-- From: Ritesh Singhal [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 10:03 AM To: Struts Users Mailing List Subject: Passing parameter in a pop up window I want to have a link like this: Where my javascript function is: function MM_openBrWindow(theURL,winName,features) {

RE: Passing parameter in a pop up window

2003-01-30 Thread Durham David Cntr 805CSS/SCBE
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 Mailing List > Subject: Passing parameter in

RE: Passing parameter in a pop up window

2003-01-30 Thread Pani, Gourav
Singhal [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 10:03 AM To: Struts Users Mailing List Subject: Passing parameter in a pop up window I want to have a link like this: Where my javascript function is: function MM_openBrWindow(theURL,winName,features) { window.open

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
dow.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 > should not get > refreshed. > > Regards > Ritesh > > -Original Message-

RE: Passing parameter in a pop up window

2003-01-29 Thread Ashish Kulkarni
features); > } > > Now the problem is how should I pass the parameter > "id" in the popup > window. Also on clicking on the link, parent window > should not get > refreshed. > > Regards > Ritesh > > -Original Message- > From: Puneet Agarw

RE: Passing parameter in a pop up window

2003-01-29 Thread Ritesh Singhal
w. Also on clicking on the link, parent window should not get refreshed. Regards Ritesh -Original Message- From: Puneet Agarwal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 8:34 PM To: Struts Users Mailing List Subject: Re: Passing parameter in a pop up window Yes you c

Re: Passing parameter in a pop up window

2003-01-29 Thread Puneet Agarwal
Yes you can 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 p

Re: Passing parameter in a pop up window

2003-01-29 Thread Patrice
I think you can use use the tag with target="_blank". Hope it helps Patrice - Original Message - From: "Ritesh Singhal" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, January 29, 2003 3:09 PM Sub

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