OnFilterStateChanged Event
Fires when the filter status changes.
Syntax
SiteKiosk.Plugins("SiteCoach").OnFilterStateChanged = handler
|
Remarks
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 filter status changes.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Plugins("SiteCoach").OnFilterStateChanged = OnFSChanged;
function OnFSChanged()
{
alert(SiteKiosk.Plugins("SiteCoach").FilterState);
}
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top