Filter
Table with filtering
Static table
99 | 3509 | true | John Doe | US-West 1 | live | ||
4200 | true | 2024-10-31 | Mike Johnson | EU-West 1 | development_env |
{
"filterModel": {
"filterType": "join",
"type": "AND",
"conditions": [
{
"colId": "costs",
"type": "greaterThan",
"filter": 123,
"filterType": "number"
},
{
"colId": "owner",
"type": "contains",
"filter": "john",
"filterType": "text"
}
]
}
}With passed "initialFilters" prop
of the filters match
AND
99 | 3509 | true | John Doe | US-West 1 | live | ||
4200 | true | 2024-10-31 | Mike Johnson | EU-West 1 | development_env |
{
"filterModel": {
"filterType": "join",
"type": "AND",
"conditions": [
{
"colId": "costs",
"type": "greaterThan",
"filter": 123,
"filterType": "number"
},
{
"colId": "owner",
"type": "contains",
"filter": "john",
"filterType": "text"
}
]
}
}