Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / src / data / BufferStore.js
1 /**
2  * @class Ext.data.BufferStore
3  * @extends Ext.data.Store
4  * @ignore
5  */
6 Ext.define('Ext.data.BufferStore', {
7     extend: 'Ext.data.Store',
8     alias: 'store.buffer',
9     sortOnLoad: false,
10     filterOnLoad: false,
11     
12     constructor: function() {
13         Ext.Error.raise('The BufferStore class has been deprecated. Instead, specify the buffered config option on Ext.data.Store');
14     }
15 });