Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

ListGrid (defined within form element) runtime error on IE8

$
0
0
I recently upgrade to SC v10 Pro ( Version v10.0p_2015-06-30/Pro Deployment (2015-06-30) and now facing a weird issue with one of ListGrid (attached with client only datasource) defined within html form element when running app in IE8 mode on IE11. Again this only happens if the grid is defined with in form and browser (IE11) mode is switched to IE8, otherwise it works.

Please open the attached html in IE8 mode to reproduce this error. If you remove the form, the example will work. Also if just attach the data directly to ListGrid, it works within the form too but then filter on this grid does not work.

As far as SC console, it just shows Unknown Runtime Error and so is the IE debug console.

When used scripts under module-debug to further debug the issue the problem happens in ISC_Core.js at second last line in this method.
Code:

// update the innerHTML of a childless Canvas
_updateInnerHTML : function () {
    var wasPrinting = this.isPrinting;
    this.isPrinting = false;

    var innerHTML = this._getInnerHTML();
    this.getHandle().innerHTML = innerHTML;

    this.isPrinting = wasPrinting;
}


I will really appreciate if you can provide a workaround or fix as we are facing this in production.

Attached Files
File Type: html localdatasource.html (3.0 KB)

Viewing all articles
Browse latest Browse all 4756

Trending Articles