I had this error on internet explorer 'JSON' is undefined
.
The error occurred here:
ajaxCall({
url: me.getAllService,
data: JSON.stringify(unionParameters({ filter: filter }, getData(), me.getAllParameters)),
success: function (result) {
if (typeof (onSuccess) == 'function')
onSuccess(result);
},
error: function (error) {
if (typeof (onFailed) == 'function')
onFailed(error);
}
});