Hi there,
I'm testing the new 10.1 ans it seems there is a issue while creating our own component. I'm using SmartClient_v101p_2015-12-13_Pro.
I'm getting this error:
This does happen at this line : "iframeElem.setAttribute("width", this.getInnerContentWidth());" (Line 64676 in ISC_Core.js)
The same application code was running fine with Smartclient 10.0.
I'm generating a AceEditor-Class which is defined as subclass of HTMLFlow. Do I have to change something, or is this a framework-issue itself?
Best Regards
I'm testing the new 10.1 ans it seems there is a issue while creating our own component. I'm using SmartClient_v101p_2015-12-13_Pro.
I'm getting this error:
Code:
*17:12:04.074:XRP2[E0]:WARN:Log:TypeError: iframeElem is null
Stack from error.stack:
._assignRectToHandle()
._setHandleRect()
.__adjustOverflow()
._adjustOverflow()
.adjustOverflow()
._completeChildOverflow()
.layoutChildren()
.drawChildren()
.draw()
.layoutChildren()
.drawChildren()
.draw()
.layoutChildren()
.drawChildren()
.draw()
.layoutChildren()
.drawChildren()
.draw()
.layoutChildren()
.reflowNow()
.reflow/<()
.runTeas()
._clearThread()
._fireXMLCallback()
.sendXmlHttpRequest/loadFunc()
Code:
_data_page_spaceAttrName: "data-isc-page-space",
_assignRectToHandle : function (left,top,width,height,styleHandle) {
if (this.containsIFrame()) {
var iframeElem = this._getURLHandle();
iframeElem.setAttribute("width", this.getInnerContentWidth());
iframeElem.setAttribute("height", this.getInnerContentHeight());
}
I'm generating a AceEditor-Class which is defined as subclass of HTMLFlow. Do I have to change something, or is this a framework-issue itself?
Code:
isc.defineClass("AceEditor","HTMLFlow").addProperties({
Comment