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
I'm currently trying to get a custom filter to work on two columns.
If I apply the custom filter to each off them individually, it's working as expected, but I need to have the same filter (filter different time periods on a date) on two columns, so I can filter both of them.
Here's the code for the custom options that I thought would work custom_options: { cols: [1,2], texts: [ [ 'Letze Woche', 'Letzer Monat', 'Letzten 6 Monate', 'Letztes Jahr' ] ], values: [ [ '>' + oneweekago, '>' + onemonthago, '>' + sixmonthsago, '>' + oneyearago ] ], sorts: [false] },
The variables are declared prior to this and work just fine, if I have "cols:[1]" or "cols:[2]" in the file, but not with both of them in there.
Is this even possible or am I missing something here?
Best regards
The text was updated successfully, but these errors were encountered:
Hi,
I'm currently trying to get a custom filter to work on two columns.
If I apply the custom filter to each off them individually, it's working as expected, but I need to have the same filter (filter different time periods on a date) on two columns, so I can filter both of them.
Here's the code for the custom options that I thought would work
custom_options: { cols: [1,2], texts: [ [ 'Letze Woche', 'Letzer Monat', 'Letzten 6 Monate', 'Letztes Jahr' ] ], values: [ [ '>' + oneweekago, '>' + onemonthago, '>' + sixmonthsago, '>' + oneyearago ] ], sorts: [false] },
The variables are declared prior to this and work just fine, if I have "cols:[1]" or "cols:[2]" in the file, but not with both of them in there.
Is this even possible or am I missing something here?
Best regards
The text was updated successfully, but these errors were encountered: