List operation question #396
-
is it possible based on the filter to combine columns of the dataTable? |
Beta Was this translation helpful? Give feedback.
Answered by
pxpm
Feb 8, 2023
Replies: 1 comment 1 reply
-
Hey @alexsol22 It could be possible to do that, but you need to overwrite/create a new filter that instead of triggering a table redraw with the new url, triggers a full page reload. You can then intercept on your controller in the Cheers |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jcastroa87
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @alexsol22
It could be possible to do that, but you need to overwrite/create a new filter that instead of triggering a table redraw with the new url, triggers a full page reload.
You can then intercept on your controller in the
request()
, check what/if filters are active andaddColumn()
orremoveColumn()
depending on that.Cheers