How to Retrieve and Set a Consolidated Schema for User action in Table for Filters, Sorts and more ?
I wanted to check if it's possible to define a table schema that captures all user interactions such as filtering and sorting for each column. Specifically, in scenarios where users apply both sorting and filtering across multiple columns simultaneously, is there a way to retrieve a complete and structured summary of all the actions performed—per column?
For example, if a user filters and sorts on the "size" and "name" columns, I'd like to receive a consolidated schema or data object that includes the applied filters, their logical connectors (e.g., AND/OR), and sorting directions for each column.
[
{
"colId": "size",
"sort": "asc",
"filters": [
{ "id": "equals", "value": "S" },
{ "connector": "AND" },
{ "id": "contains", "value": "M" }
]
},
{
"colId": "name",
"sort": "dsc",
"filters": [
{ "id": "contains", "value": "m" },
{ "connector": "OR" },
{ "id": "beginsWith", "value": "sp" }
]
}
]
0 Replies