Hello .
when I export to excel by TreeGrid. After export Excel is enable to edit in table but unable to formula,calculate
example this image . when sum in cell result = 0
mygrid = new dhtmlXGridObject(‘gridbox’);
mygrid.gN=true;
mygrid.setImagePath(‘dhtmlxTreeGrid/codebase/imgs/csh_bluebooks/’);
mygrid.setHeader(header);
mygrid.setInitWidths(width);
mygrid.setColAlign(aling);
mygrid.setColTypes( mode);
mygrid.setColSorting( type);
mygrid.enableRowsHover(true,‘hover’);
mygrid.init();
mygrid.setSkin(“xp”);
mygrid.setStyle(" color:#333366; font-weight:bold;", “”,“color:white;”, “”);
mygrid.attachEvent(“onKeyPress”,onKeyPressed);
mygrid.attachEvent(“onBeforeSelect”,function(){ return false; });
mygrid.enableMathSerialization(ture);
mygrid.enableBlockSelection(true);
mygrid.enableAlterCss(“even”,“uneven”);
Thank you.