sigidadon
28 May 2007, 3:44 AM
Hi,
I have a grid getting it's data as ajax result.responseXML when the page is being loaded.
In firefox - the grid looks great with all the information whereas in IE i get an empty grid.
the data is being loaded as
grid.getDataSource().loadData(result.responseXML);
when the XML is being loaded as a file by:
var ds = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url: '/site/ext/demo3.xml' // a real xml file
}),
reader: new Ext.data.XmlReader({
record: 'entries',
id: 'value > id'
}, [{name: 'owner', mapping: 'value > owner'},
'status', 'description', 'client'
])
});
ds.load({params:{start: paging.cursor, limit: paging.pageSize}});
- the XML is being loaded to the IE just fine.
any ideas?
Thanks!
I have a grid getting it's data as ajax result.responseXML when the page is being loaded.
In firefox - the grid looks great with all the information whereas in IE i get an empty grid.
the data is being loaded as
grid.getDataSource().loadData(result.responseXML);
when the XML is being loaded as a file by:
var ds = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url: '/site/ext/demo3.xml' // a real xml file
}),
reader: new Ext.data.XmlReader({
record: 'entries',
id: 'value > id'
}, [{name: 'owner', mapping: 'value > owner'},
'status', 'description', 'client'
])
});
ds.load({params:{start: paging.cursor, limit: paging.pageSize}});
- the XML is being loaded to the IE just fine.
any ideas?
Thanks!