-
2 Apr 2012 9:14 AM #1
Large XML Data Store Crash
Large XML Data Store Crash
Designer version tested:
- 1.2.2 Build: 48
- Windows 7 64-bit
- Ext JS 4.x
- Loading large amount of data on XML data store crashes application
Code:Ext.define('MyApp.store.MyXmlStore', { extend: 'Ext.data.Store', constructor: function(cfg) { var me = this; cfg = cfg || {}; me.callParent([Ext.apply({ storeId: 'MyXmlStore', proxy: { type: 'ajax', url: 'http://remoteserver/dbdump.xml', reader: { type: 'xml', record: 'row' } }, fields: [ { mapping: 'SR_ID_NO', name: 'caseNumber', type: 'int' } ] }, cfg)]); } });
See this URL : not available
Steps to reproduce the problem:- Create remote XML data store (175 MB XML file)
- Add a field
- Click Load Data
- data populated
- Application crash after about 20 seconds
- n/a
- none
- not provided
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote