TabSheet.RenderDimComboEditor

Syntax

RenderDimComboEditor: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The RenderDimComboEditor event is fired on rerendering drop-down menu in the table.

Example

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

// Process the RenderDimComboEditor event
tabSheet.RenderDimComboEditor.add(function(sender, args) {
    console.log("Drop-down list in table is rerendered.")
});
// Fire the RenderDimComboEditor event
tabSheet.RenderDimComboEditor.fire(this);

After executing the example on firing the RenderDimComboEditor event the browser console shows a message, informing that drop-down menu in the table is rerendered.

See also:

TabSheet