<@doc hierarchy="GMLDOM"> Layout Code (c) SAP AG 2003-2006. All rights reserved. Aspect HTMLViewLayout for Layout; inherit InteractorLayout; constructor(board, parent) this.supercall(); this.link = null; end override virtual method paint(parentElement) this.supercall(); this.link = this.createHtmlElement('DIV', null, null, this.contents); end override virtual method repaintContents(attr) //TODO:Create an Iframe to display a static content of the URL var url = (base.htmlUrl == '') ? '#TEXT[XMSG_HTMLVIEW_NOURL]' : base.htmlUrl; //var parentStyle = this.parentElement.style; //var w = INT(parentStyle.pixelWidth/2); //var h = INT(parentStyle.pixelHeight/2); this.link.innerHTML = '


' +'' + url + ''; end