OnNewLayout Event
Fires when the touch screen keyboard's language is changed.
Syntax
SiteKiosk.Keyboard.OnNewLayout = 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 an alert window when the touch screen keyboard language is changed.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Keyboard.OnNewLayout = OnNewLayout;
function OnNewLayout()
{
alert("Changed");
}
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top