Constructor

Row
(
  • content
  • options
)

Parameters:

Show:

classNames

String | Array

Class names to be applied to this row

content

Object

Data content for this row. Since this class extends Ember.ObjectProxy, all properties are forwarded to the content. This means that instead of row.content.foo you can just do row.foo. Please note that methods are not forwarded. You will not be able to do row.save(), instead, you would have to do row.content.save().

expanded

Boolean

Whether the row is expanded.

CSS Classes:

  • is-expanded


Default: false

hidden

Boolean

Whether the row is hidden.

CSS Classes:

  • is-hidden


Default: false

rowId

String

Rows's unique ID.

Note: named rowId in order to not shadow the content.id property.

selected

Boolean

Whether the row is selected.

CSS Classes:

  • is-selected


Default: false