When "True", the X that normally appears on the right side of a PopupPanel's title bar is not included.
The default value is "False".
When "True", you may need to provide another link within the panel so it can be closed. Action.ShowElement can be used for this purpose.
For example:
<Label Caption="Close"> <Action Type="ShowElement" ElementID="myPanel" ID="actionClose" Display="Hide" /> </Label>
Action.RefreshElement also hides PopupPanels. In the example below, Action.RefreshElement updates an element outside the popup and also hide the popup itself.
<Label Caption="Refresh the Time and Close"> <Action Type="RefreshElement" ElementID="myLabelWithTime,myPanel" ID="actionRefreshAndClose" /> </Label>
|