Packages

trait Props extends Object

Annotations
@JSType() @native()
Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Props
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val aria-label: UndefOr[String]

    Optional aria-label value to set on the column header

  2. val cellDataGetter: UndefOr[RawCellDataGetter]

    Callback responsible for returning a cell's data, given its :dataKey ({ columnData: any, dataKey: string, rowData: any }): any

  3. val cellRenderer: UndefOr[RawCellRenderer]

    Callback responsible for rendering a cell's contents.

    Callback responsible for rendering a cell's contents. ({ cellData: any, columnData: any, dataKey: string, rowData: any, rowIndex: number }): node

  4. val className: UndefOr[String]

    Optional CSS class to apply to cell

  5. val columnData: UndefOr[Object]

    Optional additional data passed to this column's :cellDataGetter

  6. val dataKey: Any

    Uniquely identifies the row-data attribute corresponding to this cell

  7. val defaultSortDirection: String

    Optional direction to be used when clicked the first time

  8. val disableSort: UndefOr[Boolean]

    If sort is enabled for the table at large, disable it for this column

  9. val flexGrow: UndefOr[JsNumber]

    Flex grow style; defaults to 0

  10. val flexShrink: UndefOr[JsNumber]

    Flex shrink style; defaults to 1

  11. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  12. val headerClassName: UndefOr[String]

    Optional CSS class to apply to this column's header

  13. val headerRenderer: RawHeaderRenderer

    Optional callback responsible for rendering a column header contents.

    Optional callback responsible for rendering a column header contents. ({ columnData: object, dataKey: string, disableSort: boolean, label: node, sortBy: string, sortDirection: string }): PropTypes.node

  14. val headerStyle: UndefOr[Object]

    Optional inline style to apply to this column's header

  15. val id: UndefOr[String]

    Optional id to set on the column header

  16. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  17. val label: UndefOr[Node]

    Header label for this column

  18. val maxWidth: UndefOr[JsNumber]

    Maximum width of column; this property will only be used if :flexGrow is > 0.

  19. val minWidth: UndefOr[JsNumber]

    Minimum width of column.

  20. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  21. val style: UndefOr[Object]

    Optional inline style to apply to cell

  22. def toLocaleString(): String
    Definition Classes
    Object
  23. def valueOf(): Any
    Definition Classes
    Object
  24. val width: JsNumber

    Flex basis (width) for this column; This value can grow or shrink based on :flexGrow and :flexShrink properties.