attachHeader Grid

allinterest = new dhtmlXGridObject('allinterest'); allinterest.setSkin("dhx_skyblue"); allinterest.setImagePath("../Grid/imgs/"); allinterest.enableDragAndDrop(true); allinterest.enableMultiselect(false); allinterest.enableContextMenu(addinterestm); allinterest.setEditable(false); allinterest.attachHeader("#text_filter"); allinterest.loadXML("source/xml/allinterest.php?t="+new Date().getTime());

all work but when

allinterest.clearAll(true); allinterest.attachHeader("#text_filter"); allinterest.loadXML("source/xml/allinterest.php?t="+new Date().getTime());

Lost header ???

Unfortunately the issue cannot be reconstructed locally.
Please, try to call setSizes() method after the loading data to the grid:

allinterest.loadXML("source/xml/allinterest.php?t="+new Date().getTime(),function(){ allinterest.setSizes() });
If issue still occurs - please, provide a demo link or a complete demo where the issue can be reconstructed.

thx.
Working perfectly