❄️✨Ho-ho-holiday offer for new projects! Check out our pricing page.

Some fields are not showing up in the compact view when we set report filters

Answered
Nikita asked on December 17, 2025

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?

3 answers

Public
Nadia Khodakivska Nadia Khodakivska Flexmonster December 18, 2025

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

Public
Nikita December 18, 2025

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.

Public
Nadia Khodakivska Nadia Khodakivska Flexmonster December 19, 2025

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

Please sign in or register to submit your answer