This topic is locked
[SOLVED]

 Link to a certain TAB on VIEW page

9/5/2020 9:16:59 AM
PHPRunner General questions
P
Philip author

I would like to open a certain TAB on VIEW page with a direct link.

Any ideas how to manage?

Myr0n 9/5/2020

You can create a custom button and use activate to focus the tab

P
Philip author 9/10/2020



You can create a custom button and use activate to focus the tab


Thanks for that, but doesn't match my needs.

Sergey Kornilov admin 9/10/2020

You can pass an additional parameter via URL i.e.

table_view.php?editid1=12345&tab=2


Then in Javascript OnLoad event you can read that parameter from the URL and activate that tab.

https://xlinesoft.com/phprunner/docs/activate.htm

P
Philip author 9/17/2020



You can pass an additional parameter via URL i.e.

table_view.php?editid1=12345&tab=2


Then in Javascript OnLoad event you can read that parameter from the URL and activate that tab.

https://xlinesoft.com/phprunner/docs/activate.htm


Thanks Admin