Hi,
My team would like to know if we would be able to disable the new "Filters" available since the 2.7.0 release? Our app is currently on 2.6.13 but would like to be able to disable just these filters (Label and Value) with a boolean value in the options. We would like to get all the other bug fixes and improvements but would like that feature to be optional.
Or if your team would be able to back port your bug fixes that would be a great option as well.
Thanks,
Chris
Hello, Chris,
Thank you for your question.
As a workaround, the desired feature can be achieved via CSS:
/* Hide filter options: */
#fm-filter-label,
#fm-labels-filter-btn,
#fm-values-filter-btn {
visibility: hidden !important;
}
Here is a JSFiddle example for illustration.
This way backporting is not necessary since the CSS workaround provides the desired output.
Please let us know if such a solution would work for you.
We are looking forward to hearing from you.
Best Regards,
Vera
Thank you Vera that works for us!