We have updated Flexmonster Software License Agreement, effective as of September 30, 2025 (list of changes)
All documentation

queryerror

[starting from version: 2.3]

It is triggered if some error occurred while running the query. This event can also be triggered when options.showEmptyData is set to false.

Data passed to the handler

Parameter/TypeDescription
params
Object
Contains information about the event.
params.error
String
The error message returned from the server side.

Example

pivot.on('queryerror', function (e) {
alert('Query error!' + e.error);
});

Check the example on JSFiddle.

See also

querycomplete
runningquery