How can we allow each user to set their own filtering presets and after setting them up, we can save them for re-use in the future
Hey @AbbeyHernandez,
I think this post is identical to this one, or isn't it @R_S_I_F ??
Do you mind sharing more details why the shared solution doesn't work for you??
NO, I'm looking for filtering presets that will be saved based on user.
Ah you're right. Sorry about that.
That depends on how many filters and how they are set. Still, my suggestion would be as in the other thread, i.e. use local storage which works on a user basis and persists from one session to the other
Hello @R_S_I_F!
Could you give me some examples of filtering presets you are looking to save?
Are you thinking of saving options such as 'ascending' or 'descending'? I think you could likely do this with a boolean value. Saving this to either a users local storage or making sure it is persisted by saving it to a database along with the user.
You could then fetch the user's queries, however you want to save this data as strings or booleans. Then dynamically pass these in to a table.
There are several sort options so check out our docs here on how to implement sorts.