Qualcuno saprebbe spiegarmi questo pezzo di codice in Ext JS ?
Grazie
codice:
this.eventStore = new Ext.data.JsonStore({
		        id: 'eventStore',
		        root: 'evts',
				proxy: new Ext.data.HttpProxy({
						url: 'http://localhost/lib/init.php',
						method:'GET'
					}),
		        fields: Ext.calendar.EventRecord.prototype.fields.getRange(),
		        sortInfo: {
		            field: 'StartDate',
		            direction: 'ASC'
		        }
		    });