Interface IRowToggleEventArgs

Рepresents event arguments related to the row's expansion state being changed in a grid

Hierarchy

Hierarchy

  • IBaseEventArgs
    • IRowToggleEventArgs

Properties

cancel: boolean

The event is cancelable cancel returns whether the event has been interepted and stopped If the value becomes "true", it returns/exits from the method, instanciating the interface

event?: Event

Optional Represents the original event, that has triggered the expantion/collapse

expanded: boolean

Returns the state of the row after the operation has ended Indicating whether the row is being expanded (true) or collapsed (false)

owner?: any

Provides reference to the owner component.

rowID: any

Represents the ID of the row that emitted the event (which state is changed)

Deprecated

since version 17.1.0. Use the rowKey property instead.

rowKey: any