Options
All
  • Public
  • Public/Protected
  • All
Menu

Class VueDatatableHeader<TRow>

A control button used by the pager.

Type parameters

  • TRow: __type

Hierarchy

  • object & object & Vue<this>
    • VueDatatableHeader

Index

Vue Model

direction

direction: ESortDir | null

The current sort direction for the current column.

Vue Props

Const column

column: Column<TRow>

The Column instance this header is for.

Vue Events

change

  • change(newDirection: ESortDir | null, sortedColumn: Column)
  • Emitted when the sort direction or column is changed.

    Parameters

    • newDirection: ESortDir | null

      The new direction.

    • sortedColumn: Column

      The column the sort is done on.

Properties

$attrs

$attrs: Record<string, string>

$children

$children: Vue[]

$createElement

$createElement: CreateElement

$data

$data: Record<string, any>

$datatables

$datatables: IDict<VueDatatable<any, any>>

$delete

$delete: delete

$el

$el: Element

$isServer

$isServer: boolean

$listeners

$listeners: Record<string, Function | Function[]>

$options

$options: ComponentOptions<Vue>

$parent

$parent: Vue

$props

$props: Record<string, any>

$refs

$refs: object

Type declaration

  • [key: string]: Vue | Element | Vue[] | Element[]

$root

$root: Vue

$scopedSlots

$scopedSlots: object

Type declaration

  • [key: string]: NormalizedScopedSlot | undefined

$set

$set: set

$slots

$slots: object

Type declaration

  • [key: string]: VNode[] | undefined

$ssrContext

$ssrContext: any

$vnode

$vnode: VNode

Private tableType

tableType: TableType<any>

The TableType instance provided through [[TableTypeConsumer.tableType]].

vue

Inject table-type

Static Vue

Vue: VueConstructor

Accessors

Private canSort

  • get canSort(): boolean

Private isSortedAscending

  • get isSortedAscending(): boolean

Private isSortedDescending

  • get isSortedDescending(): boolean

sortButtonHtml

  • get sortButtonHtml(): string

Methods

$destroy

  • $destroy(): void
  • Returns void

$emit

  • $emit(event: string, ...args: any[]): this
  • Parameters

    • event: string
    • Rest ...args: any[]

    Returns this

$forceUpdate

  • $forceUpdate(): void
  • Returns void

$mount

  • $mount(elementOrSelector?: Element | string, hydrating?: undefined | false | true): this
  • Parameters

    • Optional elementOrSelector: Element | string
    • Optional hydrating: undefined | false | true

    Returns this

$nextTick

  • $nextTick(callback: function): void
  • $nextTick(): Promise<void>
  • Parameters

    • callback: function
        • (this: this): void
        • Parameters

          • this: this

          Returns void

    Returns void

  • Returns Promise<void>

$off

  • $off(event?: string | string[], callback?: Function): this
  • Parameters

    • Optional event: string | string[]
    • Optional callback: Function

    Returns this

$on

  • $on(event: string | string[], callback: Function): this
  • Parameters

    • event: string | string[]
    • callback: Function

    Returns this

$once

  • $once(event: string | string[], callback: Function): this
  • Parameters

    • event: string | string[]
    • callback: Function

    Returns this

$watch

  • $watch(expOrFn: string, callback: function, options?: WatchOptions): function
  • $watch<T>(expOrFn: function, callback: function, options?: WatchOptions): function
  • Parameters

    • expOrFn: string
    • callback: function
        • (this: this, n: any, o: any): void
        • Parameters

          • this: this
          • n: any
          • o: any

          Returns void

    • Optional options: WatchOptions

    Returns function

      • (): void
      • Returns void

  • Type parameters

    • T

    Parameters

    • expOrFn: function
        • (this: this): T
        • Parameters

          • this: this

          Returns T

    • callback: function
        • (this: this, n: T, o: T): void
        • Parameters

          • this: this
          • n: T
          • o: T

          Returns void

    • Optional options: WatchOptions

    Returns function

      • (): void
      • Returns void

toggleSort

  • toggleSort(): void

Generated using TypeDoc