Interface IDataTableProps

Properties

interface IDataTableProps {
    className?: string;
    columns: ITableColumn[];
    dtProps?: any;
    el: HTMLElement;
    onRendered?: ((el?, dt?) => void);
    onRendering?: ((dtProps) => any);
    rows?: any[];
}

Properties

className?: string
columns: ITableColumn[]
dtProps?: any
el: HTMLElement
onRendered?: ((el?, dt?) => void)

Type declaration

    • (el?, dt?): void
    • Parameters

      • Optional el: HTMLElement
      • Optional dt: any

      Returns void

onRendering?: ((dtProps) => any)

Type declaration

    • (dtProps): any
    • Parameters

      • dtProps: any

      Returns any

rows?: any[]