Hi Peter,
I’ve already tried this solution but it does not work. You can see my code here below:
var source =
{
datatype: "json",
datafields: [
{ name: 'description', type: 'string'},
{ name: 'timeIn', type: 'string'},
{ name: 'type', type: 'string'}
],
url: uri,
root: 'data',
sortcolumn: 'description',
sortdirection: 'asc',
};
The json object contains the following data:
[{"type": "", "timeIn": "2012-18-06 11:46:01", "description": "test"},
{"type": "", "timeIn": "2012-24-05 10:12:23", "description": "test2"},
{"type": "TTT", "timeIn": "2012-24-05 10:12:23", "description": "test3"}]
Thank you
Chelli