KaxSpellOnClientDialogClosed Property |
Specifies the name of the client-side function that will be called before the
spell check dialog closes.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string OnClientDialogClosed { get; set; }
Public Property OnClientDialogClosed As String
Get
Set
public:
property String^ OnClientDialogClosed {
String^ get ();
void set (String^ value);
}
member OnClientDialogClosed : string with get, set
Property Value
Type:
String
Remarks
The function should accept two parameters: sender (the dialog opener client object) and arguments.
Examplesfunction onDialogClosed(sender, args)
{
alert("spell: " + sender.get_id()+ " dialog closed");
}
See Also