DayPilot.Row.column

The column() method returns an object that represents a Scheduler row header cell.

Declaration

DayPilot.Row.column(i);

Parameters

  • i (number) - the column index (starting at 0)

Return Value

An object that represents a row header cell. It has the following methods:

  • html(str) - lets you update the cell HTML

Note that the supplied string uses raw HTML that is not protected against XSS attacks.

Example

dp.rows.find("A").column(0).html("test");