BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Antonio,
Thanks for contacting Syncfusion support.
We have checked the attached code and error screenshots also created a sample similar with the provided code. But, we were unable to reproduce the issue from our side. Refer to the sample,
Sample-AngularGrid
Please share more information to find the cause of issue and provide a better solution at the earliest,
Where did you add JSON.Parse()??? I am experienceing the same issue and could use a pointer.
Cheers!
.controller('ViewCheckOutsCtrl', ['$scope', '$modal', '$translate', '$locale', '$location', function ($scope, $modal, $translate, $locale, $location) {
$scope.data = [];
. . .
$scope.data = []
var promise = dataman.executeQuery(query);
promise.done(function (e) {
modalInstance.close();
$scope.data = JSON.Parse(e.result);
});
}; |