Combo.TextChanged

Syntax

TextChanged: function (sender,args)

Parameters

sender. Event source.

args. Event information.

Description

The TextChanged event occurs on focus loss by the component after text change.

Example

To execute the example, create the Combo component (see Example of Creating the Combo Component). Add the TextChanged event handler:

Combo.TextChanged.add(function (sender, args)

      {

          alert("Text is changed");

      });

After executing the example, on focus loss, after text changing, the Combo component shows the Text is changed message.

See also:

Combo