Hi,
I think I may have found an issue with the grid column Headers, they do not hide when attached to an accordion when running IE 10.
I tested with the dhtmlx “Attach dhtmlxGrid to Accordion” sample by adding grid.setColumnHidden(0, true) prior to loading.
http://www.dhtmlx.com/docs/products/dhtmlxAccordion/samples/04_components/04_grid.html
<script>
var dhxAccord;
function init(){
dhxAccord = new dhtmlXAccordion("accordObj");
dhxAccord.addItem("a1", "dhtmlxGrid");
dhxAccord.addItem("a2", "b");
dhxAccord.addItem("a3", "c");
dhxAccord.openItem("a1");
//
var grid = dhxAccord.cells("a1").attachGrid();
grid.setSkin("dhx_skyblue");
grid.setImagePath("../../../dhtmlxGrid/codebase/imgs/");
grid.setColumnHidden(0, true);
grid.loadXML("../../../dhtmlxWindows/samples/common/grid.xml");
}
</script>
Is it ok to ask if you can recommend a workaround?
Everything else looks really great. Thank you very much,
- Mike