You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thank you for creating such useful tool. I noticed a possible bug using yadcf. It occurs when the value of given column contains round brackets, i.e. "Verification (In progress)". I've encountered it for following column setup: filter_type : "multi_select", filter_match_mode : "exact"
In such case, when I call external filtering using yadcf.exFilterColumn(oTable, [[0, ["Verification (In progress)"]]]);
regex returns no records as the brackets aren't escaped. It will work after escaping brackets: yadcf.exFilterColumn(oTable, [[0, ["Verification \\(In progress\\)"]]]);
BR,
X.
The text was updated successfully, but these errors were encountered:
[Using 0.9.0.beta.13 version]
Hello,
First of all thank you for creating such useful tool. I noticed a possible bug using yadcf. It occurs when the value of given column contains round brackets, i.e. "Verification (In progress)". I've encountered it for following column setup:
filter_type : "multi_select", filter_match_mode : "exact"
In such case, when I call external filtering using
yadcf.exFilterColumn(oTable, [[0, ["Verification (In progress)"]]]);
regex returns no records as the brackets aren't escaped. It will work after escaping brackets:
yadcf.exFilterColumn(oTable, [[0, ["Verification \\(In progress\\)"]]]);
BR,
X.
The text was updated successfully, but these errors were encountered: