![]() |
Sergey Kornilov admin 5/25/2016 |
To open a new window in popup you need to use Javascript's window.open() function. |
R
|
Replay author 5/25/2016 |
Thanks Sergey - |
C
|
cjsaputo 5/25/2016 |
Thanks Sergey - Hopefully a quick follow-up question: So would the best bet be to add some code to the OnPageLoad event that takes control of the ID field and then calls window.open with the correct address when the ID field in the row is clicked? var ctrl = Runner.getControl(pageid,'<ID column name>'); function func() { window.open("<some page>","mywindow"); }; ctrl.on('click', func()); I'm guessing I'm still doing something wrong, as the above doesn't appear to have any impact on the list page. Thanks again, I really appreciate the help.
|
R
|
Replay author 5/26/2016 |
I actually got it working, after trying a number of different approaches. |