TabSheet.ContainerRendered

Syntax

ContainerRendered: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The ContainerRendered event is fired on table container rerendering.

Example

To execute the example, the HTML page must contain the TabSheet component named tabSheet (see Example of Creating the TabSheet Component). Process the ContainerRendered event:

// Process the ContainerRendered event
tabSheet.ContainerRendered.add(function(sender, args) {
    console.log("Table container is rerendered.")
});
// Call the ContainerRendered event
tabSheet.ContainerRendered.fire(this);

After executing the example each time the ContainerRendered event is fired, the browser console shows a message that the table container is rerendered.

See also:

TabSheet