Rich UI hyperlink

A Rich UI hyperlink widget defines a Web-page link that, if clicked, goes to the target page.
The hyperlink widget supports these properties:

For more information about supported properties and functions, see "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 fills the Preview view, you can clear the page by completing either of these actions:
If you use this widget, you must use the following statement:
import com.ibm.egl.rui.widgets.Hyperlink;

Feedback