ExtJs Store.save()?
How do I handle the save() method of the data store on the back end.(my C# code)? Do I need any extra config settings for the store to enable the save() method? If anyone could just point me in the right direction that would be great? var writer = new Ext.data.JsonWriter({ encode: true }); // create the Data Store var store = new Ext.data.JsonStore({ root: 'Data.items', idProperty: 'Empid', writer: writer, fields: ['Empid', 'Firstname', 'Surname', 'Username'], proxy: new Ext.data.HttpProxy({ url: AppRootPath + 'EmployeeDetails/GetSAASUsers', method: 'POST' })//proxy });//new Ext.data.JsonStore