onTabbedUIInitialize
Description
Fires when the Tabbed UI Component is initialized.
Discussion
The onTabbedUIInitialize server-side event fires when the Tabbed UI Component is initialized. This event can be used to simulate session variables when running in Working Preview. For example:
function onTabbedUIInitialize as v (e as p)
if eval_valid("request.SERVER_PROTOCOL") then
if request.SERVER_PROTOCOL = "A5RES" then
'running in working preview
session.var1 = "simulated value for var1"
end if
end if
end functionArguments
- ePointer
A dot variable that contains information about the Tabbed UI component.