23rd July 2023 at 10:05pm
Introduced in v5.2.2
The tm-close-window
message closes an additional browser window that was opened with tm-open-window. Specify which window to close by setting the value of param
to the string used as windowID
when opening the window.
Name | Description |
---|---|
param {default param} | String used as windowID when opening the window |
The tm-close-window
message is best generated with the ActionSendMessageWidget, which in turn is triggered by a widget such as the ButtonWidget. It is handled by the core itself.
<$button>Open Window
<$action-sendmessage
$message="tm-open-window"
$param="$:/temp/openme"
template="SampleWindowTemplate"
windowTitle="My Window Title"
width="400"
height="500"
windowID="window1"
something="I just flew in on a variable, and boy is my Hashmap tired." />
</$button>
<$button>Close Window
<$action-sendmessage
$message="tm-close-window"
$param="window1"
/>
</$button>
That renders as: