How can I show a Hyper Link in the smart client?
Regards
Sirikumara
You can put HTML into the text property of a label.
Paul
Do you mean you want to be able to click a url-text and open this in a webclient?
In that case you could create a method for this.
Just get the value of your dataprovider or textlabel (wherever your url is stored) then use:
//Shows an URL in a browser
application.showURL('http://www.example.com');
//webclient specific additional parameters...
//2nd parameter: target frame or named dialog/window, so its possible to control in which (internal) frame or dialog the url is loaded, '_self' is current window,'_blank' is new dialog
//3rd parameter: dialog options used when a dialog is specified, example: 'height=200,width=400,status=yes,toolbar=no,menubar=no,location=no'
//3th or 4th parameter: a timeout in seconds when the url should be shown, immediantly/0 is default'