How to get url parameter id in view/page perspective

Hi guys,

Any idea how to get the URL parameter ID and store it in view or session?

I have tried to open the page using the URL parameter here opens the page perfectly and the data also opens current but only the dropdown value does not open.

all fields show current data but only the dropdown shows none.

Thanks,
Priyanka Khandge

if the other url params work, then it seems its a problem with the dropdown not the params,

1 Like

Remember that url parameters are strings. Here it seems you're passing "31", which you might be trying to use as an int. Convert to int before using with your dropdown.

3 Likes