RenderDimComboEditor: function (sender, args);
sender. Event source.
args. Event information.
The RenderDimComboEditor event is fired on rerendering drop-down menu in the table.
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: