Re: html:link problem

2004-03-02 Thread Mark Lowe
When i have the misfortune of porting the mother of all abominations known as dreamweaver generated code I tend to use c:url instead a href=c:url value=/findtitle.do / this will do what i think you want. On 2 Mar 2004, at 23:19, mucus snot wrote: Hi list, Just wondering if anyone has any

Re: html:link problem

2004-03-02 Thread Nick Wesselman
Make your entire onmouseover attribute an expression. onmouseover=%=MM_swapImage('details+counter+, ... % You can have plain text or a run-time expression as an attribute, but not both. Hope this helps. Nick mucus snot wrote: Hi list, Just wondering if anyone has any bright ideas. Things

RE: html:link problem

2001-07-07 Thread Niall Pemberton
problem Niall , does it work for multiple param's??? or if not how do i tackle multiple params?? thanks, rama. - Original Message - From: Niall Pemberton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 4:39 PM Subject: RE: html:link problem Rama

RE: html:link problem

2001-07-05 Thread Greg Reddin
I need to use one of forward, href or page. So now my problems are: Try setting up the href attribute to read href=javascript:performAction(...) and see if that works.

Re: html:link problem

2001-07-05 Thread Mark Kettner
Think you mailed it to the wrong guy. Greg Reddin wrote: I need to use one of forward, href or page. So now my problems are: Try setting up the href attribute to read href=javascript:performAction(...) and see if that works. -- --o-o-- Mark Kettner

RE: html:link problem

2001-07-05 Thread Steve A Drake
On Thu, 5 Jul 2001, Greg Reddin wrote: I need to use one of forward, href or page. So now my problems are: Try setting up the href attribute to read href=javascript:performAction(...) and see if that works. Good idea. Unfortunately, it didn't work. I tried: html:link

RE: html:link problem

2001-07-05 Thread Greg Reddin
Since I am not using the JSP tags right now, I'm really speculating. It looks as if the link tag is attempting to build a URL based on the stuff you put in the href, paramId, paramName, and paramProperty attributes. It may be that the tag is not designed to work with JavaScript-style URL's in

Re: html:link problem

2001-07-05 Thread troy hart
To the best of knowledge, you can't use the bean:write tag that way. I believe it would be: html:link page="/target.cm" paramId="value" paramName="%= myCollectionElement.getId() %"click here/html:link Hope this helps... - Original Message - From: Rama Krishna To:

Re: html:link problem

2001-07-05 Thread Rama Krishna
yeah, i guess that's the way to do it. i wanted to know if there is a way to do it without using jsp. thanks much, rama. - Original Message - From: troy hart To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 1:08 PM Subject: Re: html:link problem To the best

Re: html:link problem

2001-07-05 Thread troy hart
What doesn't work with that??? - Original Message - From: Rama Krishna To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 2:25 PM Subject: Re: html:link problem no. this doesn't work. then i'll have to use jsp bean tag and do

Re: html:link problem

2001-07-05 Thread Rama Krishna
cause it assumes myCollectionElement as a normal java Object and says no method getId() in java.lang.Object - Original Message - From: troy hart To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 1:36 PM Subject: Re: html:link problem What doesn't work

Re: html:link problem

2001-07-05 Thread troy hart
html:link - Original Message - From: Rama Krishna To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 2:40 PM Subject: Re: html:link problem cause it assumes myCollectionElement as a normal java Object and says no method getId() in java.lang.Object

Re: html:link problem

2001-07-05 Thread troy hart
- From: troy hart To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 2:44 PM Subject: Re: html:link problem Well, there are a few different ways to handle this. One possible scenario is this: bean:define id="myId" name="myCollectionElement&q

Re: html:link problem

2001-07-05 Thread Rama Krishna
well, it works. thanks :)) rama - Original Message - From: troy hart To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 1:44 PM Subject: Re: html:link problem Well, there are a few different ways to handle this. One possible scenario

RE: html:link problem

2001-07-05 Thread Niall Pemberton
Rama, Cant you use paramProperty? html:link page=/target.cm paramId=value paramName=myCollectionElement paramProperty=idclick here/html:link Niall -Original Message- From: Rama Krishna [mailto:[EMAIL PROTECTED]] Sent: 05 July 2001 20:10 To: [EMAIL PROTECTED] Subject: html:link

Re: html:link problem

2001-07-05 Thread Rama Krishna
Niall , does it work for multiple param's??? or if not how do i tackle multiple params?? thanks, rama. - Original Message - From: Niall Pemberton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 4:39 PM Subject: RE: html:link problem Rama, Cant you use

Re: html:link problem

2001-07-03 Thread Matt Raible
You cannot use a link to submit a form, unless you call a javascript function from the link. The link will only submit its parameters to the form bean. Hope this helps, Matt --- Steve A Drake [EMAIL PROTECTED] wrote: Hello. I'm trying to use html:link to submit the contents of a form. The

Re: html:link problem

2001-07-03 Thread Steve A Drake
Thanks for your reply Matt. I tried invoking a Javascript function to perform the form submission, e.g.: html:link onclick=performAction(form, 'simpleQuery.do') forward=simpleQuery paramId=offset paramName=resultNavigator