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
1390
igDataSource Callback
posted

Hi, I created a datasource like follow:

 

dataSource: new $.ig.JSONPDataSource({
					dataSource: $widget.options.dataSource.remoteUrl,
					type: "remoteUrl",
					responseDataKey: "Results",
					callback: function (success, error) {
						if (!success) {
							alert(error);
						}
					},
					urlParamsEncoded: function (owner, params) {
						$.fc.igHelper.igSetOdataDateFilter(owner, params);
					}					
				})
 
but the callback method does not get fired if an error occurs.