ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: kjvjung on September 04, 2017, 03:58:29 pm
-
hello!
https://paramquery.com/pro/demos/infinite_scroll
Was changed as follows.
dataIndx: 'notes' also added a filter like dataIndx: 'company'.
The results were good when loaded.
However, there was a problem when changing the filter value of dataIndx: 'notes'.
dataIndx: The filter value of 'company' is dead. It became blank. It is gone.
How can I fix it?
-
Please use oper: 'add' instead of oper: 'replace' in filter method.
this.filter({
oper: 'add',
rule: { dataIndx: 'company', value: $(evt.target).val()}
});
-
thank you^^ ;)