Splitter.SplitterPositionChanged

Syntax

SplitterPositionChanged: function(sender, args);

Parameters

sender. Event source.

args. Event information. The Position argument returns separator current position.

Description

The SplitterPositionChanged event occurs after separator position changes.

Comments

For the event to occur the EnableResize property must be set to True (default value).

Example

To execute the example, the page must contain the Splitter component named splitter (see Example of Creating the Splitter Component).

splitter.SplitterPositionChanged.add(function (sender, args)

{

   alert(args.Position)

})

After the separator position changes a message that contains information on the current separator position is displayed.

See also:

Splitter