Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2715
Reload data in an igGrid
posted

When I try to manual reload data in an igGrid I get this error :

Unhandled exception at line 195, column 24879 in http://localhost:55339/Scripts/IG/infragistics.core.js

0x800a139e - Der opstod en JavaScript-kørselsfejl: There was an error parsing/evaluating the JSON string: Tegnet er ugyldigt

This line is marked :

 {throw new Error($.ig.DataSourceLocale.errorParsingJsonNoScheme+e.message)}

I use this to update the grid :

$.getJSON("@Url.Content("/Home/Opret_Arrangement")", postData, function (data) {
if (data == "OK") {
$("#dlgOpretArrangement").igDialog("close");
$("#grdDetSker").igGrid("dataBind");
}
});

 

Parents Reply Children
No Data