HideConfigWarnDlg Property
The HideConfigWarnDlg property specifies if the configuration warning dialog should be shown.
Syntax
SiteKiosk.SiteKioskUI.HideConfigWarnDlg [=bool]
|
Possible Values
Boolean value that specifies or retrieves if the configuration warning dialog should be shown.
|
The property is read/write.
Remarks
The configuration warning dialog must be implemented into each skin for this property to show an effect. See the Default, IE and IE7 skin for examples.
Examples
The following example changes the visibility of the configuration warning dialog.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
skui = SiteKiosk.SiteKioskUI;
function switchhcwd()
{
skui.HideConfigWarnDlg = !skui.HideConfigWarnDlg;
}
</SCRIPT>
<a href="javascript:switchhcwd()">switch visibility</a>
|
Applies to
SiteKiosk v6.6 (and later versions).
Back to top