Grid not showing content in IE9

Hi,

I have some grids and treegrids that dont load in IE9. It works in all other browers even in IE Compatibility view.

Any advice?

Thanks in advance.

Unfortunately the issue cannot be reconstructed locally.
The following samples work well in IE9:
dhtmlx.com/docs/products/dht … _grid.html
dhtmlx.com/docs/products/dht … _init.html

If issue still occurs - please, provide any information about your project:
dhtmlx version, scrrenshots of the issue, sample of your code, demo link where the issue can be reconstructed or a complete demo.

I have this code:

function init_grid_mensajes(){
	mygrid = new dhtmlXGridObject('gridbox');
	mygrid.selMultiRows = true;
	mygrid.setImagePath("../../js/dhtmlxGrid/codebase/imgs/");
	mygrid.setHeader(" ,Remitente,Fecha,Asunto,Mensaje,Leer,Eliminar");
	mygrid.setInitWidths("40,100,130,*,*,60,60");
	mygrid.setColAlign("center,left,left,left,left,center,center");
	mygrid.setColTypes("ch,ro,ro,ro,ro,link,link");
	mygrid.setColSorting("na,str,str,str,str,na,na");
	 mygrid.attachHeader("#master_checkbox,#text_filter,#text_filter, #text_filter,#text_filter,#rspan,#rspan");
	mygrid.enableTooltips("false,false,false,false,false,false,false");
	
        mygrid.init();
    
	//start grid;
	mygrid.setSkin("dhx_skyblue");
	mygrid.enablePaging(true, 15, 3, "recinfoArea");
	mygrid.setPagingSkin("toolbar", "dhx_blue");
	
	mygrid.loadXML("connectors/xml_mensajes.php");
	dp1 = new dataProcessor('connectors/mensajes.php');
	dp1.setTransactionMode("POST");
	dp1.init(mygrid);
}

dhtmlx version: v.2.5 build 91111

Unfortunately your code also works well locally for us.
If issue still occurs - please, provide a complete demo.
Here you can find a tutorial:
docs.dhtmlx.com/doku.php?id=othe … leted_demo