Click or drag to resize
KaxSpellOnClientDialogClosed Property
Specifies the name of the client-side function that will be called before the spell check dialog closes.

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 OnClientDialogClosed { get; set; }

Property Value

Type: String
Remarks
The function should accept two parameters: sender (the dialog opener client object) and arguments.
Examples
[New Example]
function onDialogClosed(sender, args)
{
    alert("spell: " + sender.get_id()+ " dialog closed");
}
See Also