Hey Guys ... migrating an 8.x application to 10.x. It made heavy use of session variables which I see were deprecated in 9.x
I'm trying to get a custom button on a list page to execute an external script but cannot get arguments to pass thru.
I have a BeforeDIsplay event which is grabbing the proper data:
$userData = Security::currentUserData();
//print_r($userData["CustID"]);
The following commented code works perfectly, the uncommented does not:
//window.open('connector.php?Action=SyncOrders&CID=1','_blank');
//return;
var CID = $userData["CustID"];
window.open('connector.php?Action=SyncOrders&CID=' + CID , '_blank');
return;
Any perls of wisdom you can pass along?