Hi,
I'm using Ext 2.1 but I'm still seeing this problem where dir=ASC is sent to server everytime when I pass the metaData in the JSON response.
What is the fix? I see the override in the other thread has been added to the JsonReader code but it doesn't work for me.
My store looks like:
Code:
var assetStore = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
method:'GET',
url:'/api/asset/assets/',
disableCaching:false,
headers: {'Accept': 'application/json'}
}),
reader: new Ext.data.JsonReader(),
remoteSort: true
});