IE11 grid is not updating with updated data

Hi Team,

Grid is not updating the newly/deleted record in IE11. It is just refreshing but not updated. Even i added new dhmlxcommon.js file and removed the existing one in my project. But there is no change and it works like as same before and also while sorting the grid everything clears.

I written the following code for loading grid,

 ownerdoclistgrid = new dhtmlXGridObject('divOwnerDocumentList');
 ownerdoclistgrid.setHeader(
"RowIdent,OwnerDocId,DocId,Document Name,Document Type,Send   Date,ReceiveDate,Signed,Contact,OwnerName,Theater,,,,OwnerId,FileType",
null,
["text-align:left;", "text-align:left;", "text-align:left;", "text-align:left;", "text-align:left;", "text-align:center;", "text-align:center;", "text-align:center;", "text-align:center;", "text-align:left;", "text-align:center;", "text-align:left; border-right: 0px !important;", "text-align:left;border-left: 0px !important; border-right: 0px !important;", "text-align:left;border-left: 0px !important;", "text-align:left;", "text-align:left;"]

);
if (Isview == “True”) {
ownerdoclistgrid.setInitWidths(“0,0,0,0,233,80,80,60,110,0,160,0,40,0,0,0”);
}
else {
ownerdoclistgrid.setInitWidths(“0,0,0,0,190,80,80,60,110,0,130,40,40,40,0,0”);
}
ownerdoclistgrid.setColTypes(“ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro”);
ownerdoclistgrid.setColAlign(“left,left,left,left,left,left,left,center,left,left,left,center,center,center”);
ownerdoclistgrid.enableSmartRendering(true);
ownerdoclistgrid.enableMultiselect(false);
ownerdoclistgrid.setSkin(“light”);
ownerdoclistgrid.setColSorting(“na,na,na,str,str,date,date,na,str,na,str,na,na,na,na,na”);
ownerdoclistgrid.setColumnHidden(0, false);
ownerdoclistgrid.setColumnHidden(1, false);
ownerdoclistgrid.setColumnHidden(6, false);
ownerdoclistgrid.setColumnHidden(7, false);
ownerdoclistgrid.setColumnHidden(8, false);
if (Isview == “True”) {
ownerdoclistgrid.setColumnHidden(11, true);
ownerdoclistgrid.setColumnHidden(13, true);
}

    ownerdoclistgrid.attachEvent("onRowCreated", doOnRowCreated);
    ownerdoclistgrid.attachEvent("onCheck", doOnCheckBoxSelected);
    ownerdoclistgrid.attachEvent("onRowSelect", doOnRowSelected);
    ownerdoclistgrid.init();
    ownerdoclistgrid.loadXML("OwnerDocumentListGrid.ashx?OwnerId=" + ownerId + "&contactName=" + contactName + "&DoctypeId=" + doctypeId + "&Content=" + Content);
    //ownerdoclistgrid.load("OwnerDocumentListGrid.ashx?OwnerId=" + ownerId + "&contactName=" + contactName + "&DoctypeId=" + doctypeId + "&Content=" + Content);

    //        var dp = new dataProcessor("OwnerDocumentListGrid.ashx");
    //        dp.init(ownerdoclistgrid);

I am using dhtmlxconnector for getting/binding data into grid. My dhtmlx version is 3.6 and I tried using loadXML/load and also added dataProcessor but there is no change in IE11.
please reply with solution asap.

Unfortunately the issue cannot be reproduced locally.
If the problem still occurs for you pleas,e provide with a demo link or a complete demo, where the problem can be reconstructed.