Is there a way to override a field value with one parsed from URLSearchParams? I'd like to fill an hidden field if a specific parameter is passed by the URL.
E.g. JSON part
{
"type": "text",
"name": "year",
"width": "100%",
"minWidth": "256px",
"title": "Year:"
}
URL similar to
xxx.com?year=1999
In this way I'd like to fill year with 1999.