Loading from xml in IE with afterinit section not working

Hi,
I have the following xml which I’m loading with mygrid.loadXML()

<?xml version="1.0" encoding="iso-8859-1"?> 1,loc,loc,loc,loc,loc,loc,loc,loc,loc,loc,loc,loc EBIT

Loading this in Mozilla/Firefox works fine: subheader is showing.

In IE the subheader is not showing. It looks like it is ignoring the afterInit info.

How can I display the subheader in IE ?

Regards,
Steelanf

Your code works well for us.
Except that:
replace:

<column width='200px' type='tree' align='left' color='white' sort='str'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column> <column width='80px' type='ro' sort='int' align='right'></column>
with:

<column width='200' type='tree' align='left' color='white' sort='str'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <column width='80' type='ro' sort='int' align='right'></column> <settings> <colwidth>px</colwidth> </settings>