Threaded View
-
3 Dec 2012 4:07 AM #11
http://docs.sencha.com/ext-js/4-1/#!...-totalPropertyWhere should I set totalProperty?
You have to set totalProperty in reader, so you can change it in DynamicReader class.
I didn't test this code but should works.Code:proxy: { reader: Ext.create('Ext.ux.data.reader.DynamicReader', { totalProperty: 'yourValue' }), type: 'rest', url: me.url } or proxy: { reader: { type: 'dynamicReader', totalProperty: 'yourValue' }, type: 'rest', url: me.url }


Reply With Quote