Optional
count: numberGet a row of data from the server.
If this method is implemented, it allows the client to retrieve an entire row of data from the server instead of having to
retrieve the value each cell in the row individually. Used by RevSubgridImplementation.getSingletonViewDataRow
.
Get a field's value at the specified row in a format suitable for display.
The core of the client does not need to know the type of the return value. getViewValue()
is called by the Cell Painter
associated with the cell/subgrid.
The cell painter expects a certain type of view value and casts the result accordingly.
The value of the field at the specified row.
Optional
data: ObjectViewRow[]Set a cell's value given its column schema & row indexes and a new value.
If not implemented, the cell cannot be edited.
Update or blank row in place.
Note parameter order is the reverse of addRow
.
if omitted or otherwise falsy, row renders as blank
Subscribe to data notifications from the server.
Unsubscribe from data notifications.
Optional as it is not required when the client and server are closely bound together and destroyed at the same time.
Gets current count of rows in the associated subgrid at the server.