Interface IRenderable<T>

  • Type Parameters:
    T - row/item model object type

    public interface IRenderable<T>
    Lightweight columns return an implementation of this interface to render cell output.
    Author:
    Matej Knopp
    See Also:
    IGridColumn.isLightWeight(IModel)
    • Method Detail

      • render

        void render​(IModel<T> rowModel,
                    Response response)
        Renders the output for given cell model. The implementation must take care of proper escaping (e.g. translating < to &lt;, etc.) where appropriate.
        Parameters:
        rowModel - model for given row
        response -