RadSpell for ASP.NET

Client-Side Events Send comments on this topic.
See Also
Client Side Events and Configuration > Client-Side Events

Glossary Item Box

Events

Telerik RadSpell exposes the following client-side events:  

Name

Event Handler Parameters

Description

OnClientCheckStarted (sender, Object eventArgs) Gets or sets the name of the client-side function that will be called
when the spell check starts.
OnClientCheckFinished (sender, Object eventArgs) Gets or sets the name of the client-side function that will be called
when the spell check is finished.

eventArgs parameter has the following properties:
  • SuppressCompleteMessage - configures the RadSpell object to display the default spellcheck complete message (false) or not (true).

Example:

function OnCheckFinished(sender, args)
{
    alert('The spell check is finished!');
    //Suppress the default spellcheck complete message:
    args.SuppressCompleteMessage = true;
    ....
}

OnClientCheckCancelled (sender, Object eventArgs) Specifies the name of the client-side function that will be called
when the user cancels the spell check.

 

OnClientCustomWordAdded (sender, Object eventArgs) Specifies the name of the client-side function that will be called
after the user adds a word to the custom dictionary.
OnClientDialogClosing (sender, Object eventArgs) Specifies the name of the client-side function that will be called
before the spell check dialog closes.

 

 

  See a live example at www.telerik.com

See Also