GenericLink

Creates an <a> hyperlink for an arbitrary URL.

Although a GenericLink can be accomplished using an Any component, a GenericLink is more flexible: it can be disabled, like a DirectLink and can also wrap around Rollover components. GenericLinks are often used with javascript: URLs to perform client-side scripting.

See also: DirectLink , ExternalLink , PageLink , Rollover , ServiceLink

Parameters

Name Type Required Default Description
href String yes The URL to trigger when the link is clicked. This is often of the form: <a> href="javascript:functionName('param')">
disabled boolean no false Controls whether the link is produced. If disabled, the portion of the template the link surrounds is still rendered, but not the link itself.
target String no The name of the html target for this link, this is just the normal html attribute that will control where the response generated from this link will go. (Usually used in frames)
anchor String no The name of an anchor or element to link to. The final URL will have '#' and the anchor appended to it.
renderer ILinkRenderer no The object which will actually render the link.

Body: rendered

Informal parameters: allowed

Reserved parameters: none

Examples

Under Construction.