ASP.NET 3.5 and above only
Obout.Ajax.UI Controls - Spell Checker - Client side
Obout.Ajax.UI.SpellChecker.CheckFinishedArgs class
Inheritance HierarchySys.EventArgs Obout.Ajax.UI.SpellChecker.CheckFinishedArgs
Argument of this type is passed to the handlers of the
checkFinished event.
Note |
To get property values for client API properties, you must call property accessor method that is named with the get_ prefix. For example, to get a value for a property such as targetsCount, you call the get_targetsCount method:
|
function checkFinishedHandler(sender, args) {
// for all TextBoxes was clicked or emulated 'OK' in SpellChecker popup?
if (args.get_targetsCount() == args.get_targetsAccepted().length) {
// yes - force submit
__doPostBack(sender.get_button().id.replace(/_/, "$"), "");
}
} |
Properties
| Name |
Description |
targetsAccepted
|
object. Gets an array of target DOM elements for which spell checking was accepted ("OK" button was clicked or emulated in SpellChecker popup).
|
targetsCanceled
|
object. Gets an array of target DOM elements for which spell checking was conceled.
|
targetsCount
|
number. Gets the total number of DOM elements that the extender is associated with (target elements).
|