The cells.all() member returns an array of cells that contains all grid cells belonging to the row.
DayPilot.Row.cells.all()An array of cells.
Use the returned cell collection to perform batch operations on every cell in the row.
Writes "A" to all cells that belong to resource with ID of "A".
dp.rows.find("A").cells.all().html("A");