F
|
fraka author 10/16/2017 |
Come-on Guys -- you mean no one knows how to solve the issue in this forum. |
S
|
sthefaine 10/16/2017 |
Come-on Guys -- you mean no one knows how to solve the issue in this forum.
|
![]() |
Admin 10/16/2017 |
You need to use 'View as' type Custom: |
F
|
fraka author 10/16/2017 |
What version of PHPRunner are you using? Here is one way on 9.8 Add a button to you list page in a column before the data. Then in the OnServer Event add this : $record = $button->getCurrentRecord(); $result['Link']='Mywebpage.php?'.$record['My_Id']); <--- Change My_Id to your key field or whatever field you need to capture here. In OnClient After Event add : I open mine in a popup but you can change this var win = Runner.displayPopup( { url: result["Link"], width: document.documentElement.clientWidth-50, height: document.documentElement.clientHeight-50, header: result["Header"], footer: '<center><a href="#" onclick="window.win.close();">Close window</a></center>', afterCreate: function(win) { window.win = win; } }); If you need another way I have that to. Let me know Thanks Steve
|