I know how to persist settings for a single session, but are there any examples of how to create profiles for grid layouts and / or filter criteria that could be re-used, or even shared between different users?
Ex, a grid that shows order information. Some times users might want to see shipped order history, with certain columns, and some times see active orders with different columns.
It would be helpful to allow them to create a profile that could be re-used (or even shared) without having to re-enter filter rules & column chooser.
It’s not currently supported. I’ll update you after some working.
To have preset filters, one can use url based params. e.g.
The syntax is “<grid-id>_<column-name>=value” as shown in image.
We are planning to have similar url based syntax for columns to hide or to show.
Do you think it will meet your requirement?
Was really hoping to have something more user-controlled. Is there a way to use advanced search conditions in URL based parms (ex. status > 00 and status < 90)?
In latest build, it works like:
index.php?list1_status=>0%20<90
(>0 <90 – with a space between them)
Also we have now support for column hide/show based on url:
index.php?list1_showcols=id,invdate,note&list1_hidecols=total
It will show ‘id,invdate,note’ and hide ‘total’ column.