onXLE not working in chrome

Hi

it seem onXLE does not woking in Chrome
i need to close the progress window once the grid has finish loading
the same code work perfectly in FireFox
also few other attach event also not working in Chrome
/////////////////////////////////////
mygrid.attachEvent(“onXLE”,function(){
closeProgressWindow();
var int=self.setTimeout(“checkLockTimeOut()”,(28601000));
})
//////////////////////////////////////
i added this line of code before mygrid.loadXML

i have pro license
using ver 3

i apologize if the problem description is not clear not sure how to explain it but the main point is
attach event onXLE not working in chrome

Here is the example of visual notification (using onXLE event), please have a look at it.
If issue still occurs for you - please provide any kind of sample or demo link to reconstruct the issue.

i think you forgot to paste the code segment or address link for the example because i cannot see any.
still the question arise why does it work in FireFox but not in Chrome?
you claim the library work on both browser

and if i may suggest something please provide in you documentation feature/function that are not to be use together with that feature/function.
it happen to me i cannot use enableRowspan and smartrendering spend hour to figure out what i did wrong.

this could be one of that situation.

ok after playing enable and disabling my code
it just as i suspected the use of splitAt
that cause this problem in chrome once i disabled the use of splitAt
the onXLE event execute the script once the xml finish loading

i really need the splitAt to work
here are my code
///////////////////////////////////////////////////////
var mygrid;
mygrid = new dhtmlXGridObject(‘gridbox’);
mygrid.setImagePath(‘DHTMLX/ver26/imgs/’); mygrid.setHeader(<%=SupplierSpecificationGridBuilder.getGridHeader(supplierspecdao,supplierList)%>);
mygrid.attachHeader(<%=SupplierSpecificationGridBuilder.getAttachHeader(supplierspecdao,supplierList)%>)
mygrid.setInitWidths(<%=SupplierSpecificationGridBuilder.getInitWidth(supplierList)%>)

mygrid.setColAlign(<%=SupplierSpecificationGridBuilder.getColAlign(supplierList)%>)
mygrid.setColVAlign(<%=SupplierSpecificationGridBuilder.getColVAlign(supplierList)%>)
mygrid.enableResizing(<%=SupplierSpecificationGridBuilder.getEnableResizing(supplierList)%>)
mygrid.setSkin(‘gray’);
<%if(request.getParameter(“edit”)==null){%>
mygrid.setColTypes(<%=SupplierSpecificationGridBuilder.getColType(supplierList,0)%>)
mygrid.setColumnColor(<%=SupplierSpecificationGridBuilder.getColColor(supplierList,0)%>)
<%}else{%> mygrid.setColTypes(<%=SupplierSpecificationGridBuilder.getColType(supplierList,1)%>)
mygrid.setColumnColor(<%=SupplierSpecificationGridBuilder.getColColor(supplierList,1)%>)
<%}%>
mygrid.setStyle(‘color:black; font-weight:bold;’, ‘’, ‘’, ‘’);
mygrid.enableEditEvents(true,false,false);
mygrid.enableRowspan(true);
mygrid.init();
mygrid.splitAt(8);
mygrid.setPagingSkin(“bricks”);
loadProgressWindow();
var formMsg = ‘Loading Parametric Data …’;
setProgressWindowMessage(formMsg);
mygrid.attachEvent(“onXLE”,function(){
closeProgressWindow();
var int=self.setTimeout(“checkLockTimeOut()”,(28601000));
})
mygrid.loadXML(“XMLLoader.jsp?emptyMetricOption=<%=emptyMetricOption%>&ctqOption=<%=ctqOption%>&command=<%=command%>&searchCommodity=<%=searchCommodity%>&searchPartno=<%=searchPartno%>&searchRevision=<%=searchRevision%>&referenceCommodity=<%=referenceCommodity%>&referencePartno=<%=referencePartno%>&referenceRevision=<%=referenceRevision%>&pageno=<%=pageno%>&notUsedMetricOption=<%=notUsedMetricOption%>&metricNameLike=<%=metricNameLike%>&verifyMetricOption=<%=verifyMetricOption%>”);
mygrid.attachEvent(“onHeaderClick”,function(ind){
switchHeaderValue(ind);
<%if(command.equalsIgnoreCase(“edit”)){ %>
if(ind>5 && getUserConfirmationOnAction()){
moveValueByPage(0,ind);
}

	    if(ind==4 && getUserConfirmationOnAction()){
	    	resetValueByPage(0,ind);
	    }
	    <%}%>
	    return true;
	})
	<%if(command.equalsIgnoreCase("edit")){ %>	
	 mygrid.attachEvent("onRowSelect",function(rowId,cellIndex){
	 	resetValue(rowId,cellIndex)
	 	moveValue(rowId,cellIndex)
	  });
	  
	  mygrid.attachEvent("onEditCell",function(stage,id,index,value){
	  if (stage==2){
	        //called each time after cell edited
	        validateLSLAndUSLRule(id,index)
	    }
	    return true;
	 	
	  });
	  <%}%>

/////////////////////////////////////////////////////////////////////////////

I’m sorry for link dismiss.
Here is it:
http://www.dhtmlx.com/docs/products/dhtmlxGrid/samples/14_loading_big_datasets/12_pro_srnd_load_notification.html

Please open ticket at supportATdhtmlx.com so we can provide you the latest version of dhtmlxgrid_splt.js