Interface IGroupCellRenderer

a cell renderer for rendering a cell of specific column

interface IGroupCellRenderer {
    template: string;
    update(node, group): void | IAbortAblePromise<void>;
}

Properties

Methods

Properties

template: string

template as a basis for the update

Methods

  • update a given node (create using the template) with the given data

    Parameters

    • node: HTMLElement

      the node to update

    • group: IOrderedGroup

      the group to render

    Returns void | IAbortAblePromise<void>