New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
suppressCompleteMessage Method
As of Q1 2015, the suppressCompleteMessage property of the OnClientCheckFinished event's arguments is a method.
To prevent the informational alert, you now have to pass false as an argument(Example 1), instead of setting the property value, as in older versions (Example 2).
Example 1: Preventing the information alert in OnClientCheckFinished in Q1 2015 and later.
JavaScript
function OnClientCheckFinishedHandler(sender, args) {
args.suppressCompleteMessage(true);//prevent the alert
console.log('Spell check is complete');
}
Example 2: Preventing the information alert in OnClientCheckFinished in versions before Q1 2015.
JavaScript
function OnClientCheckFinishedHandler(sender, args) {
args.suppressCompleteMessage = true;//prevent the alert
console.log('Spell check is complete');
}