Docs (4.0.0)
class UIComponent method

render

Triggers asynchronous rendering for this component, and all contained components, if any.

render(callback: RenderContext.RenderCallback): this

Notes

  • This method is invoked automatically, and should not be called by application code. However, it may be overridden to implement a UI component with custom platform-specific rendering code.

Parameters

  • callback — A render callback, usually provided by a container or the application RenderContext instance

Related