Re: Change WOHyperlink URL programmatically
Paul Lynch <[email protected]>
| Newsgroups | gmane.comp.web.webobjects.devel |
|---|---|
| Message-ID | <[email protected]> |
On 12 Sep 2006, at 11:09, Romeo Mariani wrote: > I need to Change WOHyperlink URL programmatically adding a > parameter to component and direct action URLs, the same WO does > with "wosid" param. You can either set the values in a queryDictionary binding, or add a binding with a key of "?key" and a value of "value", which will generate on the end of your URL: "?key=value". This also works with multiple bindings in the expected way. > I don't want to extend the WO class creating a MYHyperlink and use > it in place of WOHyperlink since I have many components to check > and source component in DB too. Paul