OnSmallKeyboard Event



 
Fires when the touch screen keyboard is minimized.


Syntax

    SiteKiosk.Keyboard.OnSmallKeyboard = handler
Remarks
    In order to be able to use this event, you must have configured a touch screen keyboard.

    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows if the keyboard is minimized or maximized.

    <div id="kbstatus">Press the keyboard button</div>
    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Keyboard.OnFullKeyboard = onFull;
    SiteKiosk.Keyboard.OnSmallKeyboard = onSmall;
    function onFull()
    {
       kbstatus.innerHTML = "Full";
    }
    function onSmall()
    {
       kbstatus.innerHTML = "Small";
    }
    </SCRIPT>
    

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

Back to top