Hi,
We can use json objects to send the data to the client side using post or get method. That works perfectly cool. My concern is pther way round.
Let say I have a data store and i want to send this data store to the server then what is the best approach to do that. Further do extjs provide any method for this.
Code:
demoStore = new Ext.data.Store({
id :'demoStore',
data: [
["A","216","java",],
["B","209","php",],
["C","10","dotnet"]
],
reader: new Ext.data.ArrayReader({id:'id'}, [
'name',
'id',
language'
])
});
Regards,
Saurabh