We are trying to set report filters, hit Apply but nothing changes in our flexmonster view. We are not sure why, customizeCell is definitely called, no errors in javascript happening. You can see on the screenshots below we tried to set CellLine as a report filter. We would expect it appearing at the top but somehow it does not. How could we debug and fix it?


Hello,
Thank you for contacting us.
Flexmonster provides the grid.showReportFiltersArea property that specifies if the report filters area on the grid is visible (true) or not (false). To show the report filters, you can set this property to true. You are welcome to check the following example for reference: https://jsfiddle.net/flexmonster/ozayv60m/.
Please let us know if it works for you. Looking forward to hearing from you.
Kind regards,
Nadia
Hi Nadia,
We tried that but nothing changed. You can see the screenshot below. When we try adding report filters through Fields button it does not work. For instance in the previous message you can see that we set CellLine as a report filter but nothing showed up even with grid.showReportFiltersArea set to true.

Hi,
Thank you for the response.
The property should be defined in the following way, in the Options object:
report: {
options: {
grid: {
showReportFiltersArea: true,
},
},
// other properties
}
Also, check if there are any option settings in your code aside from the report (e.g., setReport or setOptions API calls). Then, you can use the getOptions method to check if the showReportFiltersArea option is set correctly.
You are welcome to contact us if you have any further questions.
Kind regards,
Nadia