RE: Setting bean properties on a link with onclick

2002-03-11 Thread Lai, Kenny
) { document.someForm.hiddenValue.value = someval; document.someForm.submit(); } -Original Message- From: Rick Snide [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 09, 2002 12:14 PM To: [EMAIL PROTECTED] Subject: Setting bean properties on a link with onclick I have a page "vendor

RE: Setting bean properties on a link with onclick

2002-03-11 Thread Lai, Kenny
PROTECTED]] Sent: Saturday, March 09, 2002 12:14 PM To: [EMAIL PROTECTED] Subject: Setting bean properties on a link with onclick I have a page "vendors.jsp" where (using a bean) I display a list of vendors to choose from. This list of vendors is a list of hyperlinks that the user ca

Re: Setting bean properties on a link with onclick

2002-03-10 Thread Erwin DSouza
Hi, I didn't understand all of ur question. but i got the impression that u simply don't want to display the vendor number in the address bar. i might be wrong, do correct me if i am, but here's my suggestion: i think u could do put the links within a form with a hidden field called vendornumber.

Re: Setting bean properties on a link with onclick

2002-03-09 Thread ibrahim beyazit
Why don't you use another jsp to delegate the requests to the correct jsp page? Every time user clicks on any of the vendors it will go to thru this jsp. It will be between vendors.jsp and vendorparts.jsp. This jsp will not have any ui part but just the logic to forward to vendorparts.jsp and to s

Re: Setting bean properties on a link with onclick

2002-03-09 Thread daniel
STRUTS - Original Message - From: "Rick Snide" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 09, 2002 12:14 PM Subject: Setting bean properties on a link with onclick > I have a page "vendors.jsp" where (using a bean) I display a li

Setting bean properties on a link with onclick

2002-03-09 Thread Rick Snide
I have a page "vendors.jsp" where (using a bean) I display a list of vendors to choose from. This list of vendors is a list of hyperlinks that the user can click. I want the user to click the link and then see the parts that are associated with that vendor (vendorparts.jsp). My thought was t