Package com.vaadin.client.connectors
Class UnsafeHtmlRendererConnector.UnsafeHtmlRenderer
- java.lang.Object
-
- com.vaadin.client.connectors.UnsafeHtmlRendererConnector.UnsafeHtmlRenderer
-
-
Constructor Summary
Constructors Constructor Description UnsafeHtmlRenderer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
render(RendererCellReference cell, String data)
Called whenever theGrid
updates a cell.
-
-
-
Method Detail
-
render
public void render(RendererCellReference cell, String data)
Description copied from interface:Renderer
Called whenever theGrid
updates a cell.For optimal performance, work done in this method should be kept to a minimum since it will be called continuously while the user is scrolling. It is recommended to set up the cell's DOM structure in
ComplexRenderer.init(RendererCellReference)
and only make incremental updates based on cell data in this method.
-
-