Rich UI Hyperlink

A Rich UI hyperlink defines a web-page link that, if clicked, goes to the target page.

The following properties are supported:

Supported properties and functions are described in “Widget properties and functions.”

The following example renders a link to the IBM® web site, and the displayed text is "IBM":
Handler Hyper type RUIHandler {children = [myHyperlink]}

   myHyperlink HyperLink
   {
      text = "IBM",        
      target = "_blank",
      href = "http://www.ibm.com"
   };

end
If the web page to which you are linking takes up the Preview view, you can clear the page as follows:
Use of this widget requires the following statement:
import com.ibm.egl.rui.widgets.Hyperlink;