Click or drag to resize
KaxSpellOnClientCheckFinished Property
Gets or sets the name of the client-side function that will be called when the spell check is finished.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string OnClientCheckFinished { get; set; }

Property Value

Type: String
Remarks
The function should accept two parameters: sender (the spell client object) and arguments.
Examples
JScript
function onCheckFinished(sender, args)
{
    log("spell: " + sender.clientId + " finished for: " + sender.targetControlId);
}
See Also