Hi, I just see, that the decimal numbers in column Freight are missinterpreted by using kendo.culture("de-DE"):
Without kendo.culture("de-DE") the first correct values:
32.38 11.61 65.83 41.34 51.3 58.17 22.98 148.33 13.97 81.91 140.51 3.25
With kendo.culture("de-DE") integers are shown:
3238 1161 6583 4134 5130 5817 2298 14833 1397 8191 14051 325
The numbers are multiplied with 100, see OrderID 10291 on page 3: 6.4 => 640
The setting of kendo.culture() should not change the reading of remote data (xml, json) which has always the dot decimal seperator.
Peter