class DynamicRendererWrapper
A class that’s used to render a view referenced by a property.
static
class DynamicRendererWrapper
Notes
- Objects of this type are created by the app.render() method, and are mostly used internally to keep track of rendering state asynchronously.
Instance Members
- callbackThe current render callback, if any.
- lastViewThe view object that was rendered last, if any.
- lastRenderOutputThe output that was rendered last, if any.
- isRendered()Returns true if the render method has never been called.
- render(content?, callback?, place?)Renders the provided view using a new callback, or previously stored callback.
- removeAsync()Removes previously rendered output.
Related
- class RenderContext abstractAn abstract class that supports global view rendering, part of the global application context.