Prefiltering

Hi @Dwight_Rutledge,

You can use query string to pass a parameter to some of the pages and later read this query string and use it with $filter for the data source method to filter your data. Here is how to get a query string value:

${(new URL(window.location.href)).searchParams.get("CustomerID")}

and here is how to use it in Radzen page to invoke and filter data source data:

Best Regards,
Vladimir

1 Like