![]() |
Sergey Kornilov admin 12/25/2019 |
Dashboards are multi-purpose kind of pages and not designed to be passed anything. if ($_SESSION["RecordID"]!="") { |
S
|
Steve Seymour author 12/26/2019 |
Dashboards are multi-purpose kind of pages and not designed to be passed anything. I guess you can try to save the record ID to be displayed on that View page in some session variable ($_SESSION["RecordID"]). Once View page is loaded as a part of the dashboard you can check that session variable and display the required record on that View page. Something like this may work in BeforeProcess event of the View page: if ($_SESSION["RecordID"]!="") {
|