I have an application that is opens another application and it uses the urlparams
global variable to pass a value to the second application. In the second application, there is a table/query that uses a value from urlparams
in its SQL where clause. The query looks something like this:
select * from my_table where data_set_id = {{ urlparams.hash.data_set_id }}
The problem is that, when editing the application, urlparams.hash.data_set_id has no value and so there is no data in the table to work with.
My question is, is there any way to set the value of urlparams.hash.data_set_id
while in edit mode so that the query will actually return data and the table will be populated?