@timlassiter11/yatl
    Preparing search index...

    Type Alias CellFormatterCallback<T>

    CellFormatterCallback: (value: any, row: T, element: HTMLElement) => void

    Callback for formatting a cell's HTML element. Called when the cell is created but NOT when exporting to CSV.

    Type Parameters

    • T

    Type Declaration

      • (value: any, row: T, element: HTMLElement): void
      • Parameters

        • value: any

          The value of the field.

        • row: T

          The row data.

        • element: HTMLElement

          The cell element.

        Returns void