diff --git a/Customers/LKWs.aspx b/Customers/LKWs.aspx index 453d2fe..92b816c 100644 --- a/Customers/LKWs.aspx +++ b/Customers/LKWs.aspx @@ -367,7 +367,8 @@ dtData.push([ this.SDL, this.Bez, - this.Gueltigbis + this.Gueltigbis, + this.kart ]); }); @@ -380,11 +381,12 @@ var dtData = []; // Data tables requires all data to be stuffed into a generic jagged array, so loop through our // typed object and create one. - $.each(result, function () { + $.each(result.d, function () { dtData.push([ this.SDL, this.Bez, - this.Gueltigbis + this.Gueltigbis, + this.Kartnr ]); }); @@ -394,7 +396,43 @@ }); } -