Hi,
i have a dynmic DataAdapter:
var source = {
datatype: "json"
, async: false
, datafields: []
, url: getAppDomainAppVirtualPath() + "GetTableData"
};
Json:
[{"Datum": "03/2014","Value1": "8.734.909,45","Value2": "88.659.330,87"},{"Datum": "04/2014","Value1": "31.640,42","Value2": "321.150,24"},{"Datum": "Summe","Value1": "8.766.549,86","Value": "88.980.481,11"}]
So my Problem is, when i sorted the grid with value, it doesn’t work correct.´, because the cell will be interpreted as string.
Now, i have to set the value as number…..but how?
Can i do this in loadComplete in dataAdpater?