Hello aniolekx,
I would like to suggest something about this issue that you could use to handle this case:
var isFiltering = false;
var source =
{
datafields: [
...
],
...
filter: function () {
if (!isFiltering) {
isFiltering = true;
$("#jqxGrid").jqxGrid('updatebounddata', 'filter');
}
},
url: url
};
...
$("#jqxGrid").bind("bindingcomplete", function (event) {
isFiltering = false;
});
//Grid Initialization
$("#jqxGrid").jqxGrid(settings);
It is the only a demonstration and you could try to use to handle this error.
Unfortunately, you should customize it for the Vue.
Meanwhile, I will try to prepare some example.
Best Regards,
Hristo Hristov
jQWidgets team
https://www.jqwidgets.com