type
Row
@Js
abstract const class Row : Obj, Dict
Row of a Grid. Row also implements the Dict mixin to expose all of the columns as name/value pairs.
methods
| disOf |
Get display string for the given column, if value is null then return null. |
|---|---|
| each |
Iterate through all the columns. |
| eachWhile |
Iterate through all the columns until function returns null, then break iteration and return the result. |
| get |
Get the column |
| grid |
Parent grid |
| has |
Return true if the given name is mapped to a non-null column |
| isEmpty |
Always returns false. |
| missing |
Return true if the given name is not mapped to a non-null column |
| trap |
Get the column |
| val |
Scalar value for the cell |
Slot Details
disOf
each
eachWhile
get
grid
abstract Grid grid()
Parent grid
has
isEmpty
virtual override Bool isEmpty()
Always returns false.