Grid content disappears in IE11 on sort with working example

I’ve got V3.6 build 130619 with the hotfix applied. If a grid is sorted by the client or directly with the sortRows method then the grid content disappears in IE11 (11.0.9600.16428 to be precise). Any subsequent sort throws an error. Here’s a working example that demonstrates what I mean:

http://www.timeclockmts-online.com/test-grid.htm

In case of using the compressed dhtmlx.js it is not available to include the individual js libraries (especially dhtmlxcommon.js).
Also, your dhtmlxcommon.js is from the 2.6 version of dhtmlx. Such including also is not available as you need to use the latest 3.6 version for correct displaying in IE11.

Please, try to compile a new dhtmlx.js file with included hot fix (it cab be achieved using the lib Compiler) or try to use the individual js files (dhtmlxcommon.js, dhtmlxgrid.js, dhtmlxgridcell.js).

Hi Sematik,

I found the solution i was trying the to figure out what is the issue but after lots of debugging in js file i found solution to add this lines of code which is given below :

Line no.189 (may be different in different file)
it is in init function i.e.

// this line of code for IE8
if (navigator.appVersion.indexOf(“MSIE 7.0”) != -1 && navigator.appVersion.indexOf(“Trident/4.0”) != -1) {
_isIE = 8;
}

// this line of code for IE11
if (Object.hasOwnProperty.call(window, “ActiveXObject”) && !window.ActiveXObject) {
_isIE = true;
}

paste this two lines hope it should work as it is working fine for me.

hello everybody ,

I add those line of code but doesn’t work , i add them before the parse method , what should i do next , i’m using dhtmlx.js 5.0.2 to generate a dhtmlxgridobject .

best regards .

The described problem shouldn’t occur for your version of the grid. IE11 is supported sompletely in dhtmlxSuite 4.0 or higher.
If the problem still occurs for you please, provide with a complete demo or share with a demo link, where the problem can be reproduced.
Here you can find a tutorial about creating a complete demo:
docs.dhtmlx.com/tutorials__auxil … pport.html