Packages

trait Props extends Object

Annotations
@RawJSType() @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. All

Abstract Value Members

  1. abstract val noRowsRenderer: UndefOr[RawNoRowsRenderer]

    Optional renderer to be used in place of table body rows when rowCount is 0

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val aria-label: UndefOr[String]

    Optional aria-label value to set on the column header

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val autoHeight: UndefOr[Boolean]

    Removes fixed height from the scrollingContainer so that the total height of rows can stretch the window.

    Removes fixed height from the scrollingContainer so that the total height of rows can stretch the window. Intended for use with WindowScroller

  7. val children: Array[Children]

    One or more Columns describing the data displayed in this row

  8. val className: UndefOr[String]

    Optional CSS class name

  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. val disableHeader: UndefOr[Boolean]

    Disable rendering the header at all

  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. val estimatedRowSize: Int

    Used to estimate the total height of a Table before all of its rows have actually been measured.

    Used to estimate the total height of a Table before all of its rows have actually been measured. The estimated total height is adjusted as rows are rendered.

  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. val gridClassName: UndefOr[String]

    Optional custom CSS class name to attach to inner Grid element.

  17. val gridStyle: UndefOr[Object]

    Optional inline style to attach to inner Grid element.

  18. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. val headerClassName: UndefOr[String]

    Optional CSS class to apply to all column headers

  21. val headerHeight: Int

    Fixed height of header row

  22. val headerRowRenderer: RawHeaderRowRenderer

    Responsible for rendering a table row given an array of columns: Should implement the following interface: ({ className: string, columns: any[], style: any }): PropTypes.node

  23. val headerStyle: UndefOr[Object]

    Optional custom inline style to attach to table header columns.

  24. val height: JsNumber

    Fixed/available height for out DOM element

  25. val id: UndefOr[String]

    Optional id

  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. val overscanRowCount: JsNumber

    Number of rows to render above/below the visible bounds of the list.

    Number of rows to render above/below the visible bounds of the list. These rows can help for smoother scrolling on touch devices.

  32. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  33. val rowClassName: RowClassNameParam

    Optional CSS class to apply to all table rows (including the header row).

    Optional CSS class to apply to all table rows (including the header row). This property can be a CSS class name (string) or a function that returns a class name. If a function is provided its signature should be: ({ index: number }): string

  34. val rowCount: JsNumber

    Number of rows in table.

  35. val rowGetter: RawRowGetter

    Callback responsible for returning a data row given an index.

    Callback responsible for returning a data row given an index. ({ index: number }): any

  36. val rowHeight: RowHeightParam

    Either a fixed row height (number) or a function that returns the height of a row given its index.

    Either a fixed row height (number) or a function that returns the height of a row given its index. ({ index: number }): number

  37. val rowStyle: RowStyleParam

    Optional custom inline style to attach to table rows.

  38. val scrollToAlignment: String

    See Grid#scrollToAlignment

  39. val scrollToIndex: JsNumber

    Row index to ensure visible (by forcefully scrolling if necessary)

  40. val scrollTop: UndefOr[JsNumber]

    Vertical offset.

  41. val sort: UndefOr[RawSort]

    Sort function to be called if a sortable header is clicked.

    Sort function to be called if a sortable header is clicked. ({ sortBy: string, sortDirection: SortDirection }): void

  42. val sortBy: UndefOr[String]

    Table data is currently sorted by this :dataKey (if it is sorted at all)

  43. val sortDirection: UndefOr[String]

    Table data is currently sorted in this direction (if it is sorted at all)

  44. val style: UndefOr[Object]

    Optional inline style

  45. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  46. val tabIndex: UndefOr[JsNumber]

    Tab index for focus

  47. def toLocaleString(): String
    Definition Classes
    Object
  48. def toString(): String
    Definition Classes
    AnyRef → Any
  49. def valueOf(): Any
    Definition Classes
    Object
  50. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  53. val width: JsNumber

    Width of list

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped