Disable `?page=....` query string params for a table

Hi all. I have a table in a modal that's adding pagination query params to the url. I know I can use ->queryStringIdentifier() to avoid conflicts but I'm hoping to disable it entirely. Any idea how I could do that? Cheers
2 Replies
ChesterS
ChesterS4w ago
Maybe not what you want, but what I usually do is define the field without the #[Url] attribute. So something like this
// #[Url]
public ?array $tableFilters = null;
// #[Url]
public ?array $tableFilters = null;
on your table page
Solution

Did you find this page helpful?