PreventInput Property



 
The PreventInput property indicates if input is allowed or not.


Syntax

    SKHtmlDialog.PreventInput [=bool]
Possible Values
    Boolean value that specifies or retrieves if input
    is allowed or not.

    The property is read/write.
Remarks
    If input is prevented the user will not be able to leave the dialog window or put anything in.
Examples
    The following example creates a dialog which prevents input.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
    mydialog.PreventInput = true;
    mydialog.URL = "http://www.myaddress.com";
    mydialog.ShowDialog();
    </SCRIPT>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top