Write a custom xml reader, like this:
Code:
app.readers.customreader = Ext.extend(Ext.data.XmlReader, {
readRecords: function(doc) {
if (Ext.isArray(doc)) {
doc = doc[0];
}
/**
* manipulate your xml here,
* e.g. strip the offending tags.
* Use Ext.DomQuery.selectNode
*/
return app.readers.customreader.superclass.readRecords.call(this, doc);
}
});
Ext.data.ReaderMgr.registerType('customreader', app.readers.customreader);
But this is really just a work around, there might be other things you can tweak.