TermEdit.TermsChanged

Syntax

TermsChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The TermsChanged event occurs on changing the term text from the editor.

Example

To execute the example, create the TermEdit component named termEdit. Add the TermsChanged event handler function:

termEdit.TermsChanged.add(function (sender, args) {

   alert ("Term was changed")

});

After executing the example, on changing the text of the term from the editor, the following message appears on the screen: Term was changed.

See also:

TermEdit