Dear all,
in a listgrid with a columnwise filter, I'm experiencing an issue.
First of all, I would like to only have the filter applied explicitly when clicking the filter icon to the right. I do not find the right combination of settings to accomplish this. Instead, the filter is applied when the filter cell of a column is left.
The other thing is, that the filter is most of the times applied locally, even though I turned that off.
The most problematic issue is that if I have a date column and enter a filter in the specific dialog, e.g. "after 2 months ago", the filter is NOT applied. The filter is also not applied, when clicking the filter button (the little button to the left, with the funnel icon).
That filter is only taken into account, when modifying another filter or when clicking a column header for sorting.
These are my settings on the listgrid.
Any idea what might be wrong?
I'm using SmartGwt v13.0p_2024-05-04 from
in a listgrid with a columnwise filter, I'm experiencing an issue.
First of all, I would like to only have the filter applied explicitly when clicking the filter icon to the right. I do not find the right combination of settings to accomplish this. Instead, the filter is applied when the filter cell of a column is left.
The other thing is, that the filter is most of the times applied locally, even though I turned that off.
The most problematic issue is that if I have a date column and enter a filter in the specific dialog, e.g. "after 2 months ago", the filter is NOT applied. The filter is also not applied, when clicking the filter button (the little button to the left, with the funnel icon).
That filter is only taken into account, when modifying another filter or when clicking a column header for sorting.
These are my settings on the listgrid.
Code:
listGrid.setShowFilterEditor(true); listGrid.setAllowFilterExpressions(true); listGrid.setAutoFetchData(false); listGrid.setFilterLocalData(false); listGrid.setSaveLocally(false);
I'm using SmartGwt v13.0p_2024-05-04 from
Comment