AgendaColumn
A column that displays events for a day.
This is not intended to be used directly, it is used by the AgendaView which is a specialized Grid subclass.
It can be configured through the AgendaView's columns config:
const calendar = new Calendar({
modes : {
agenda : {
columns : {
agenda : {
renderer({ cellElement, record : cellData }) {
// Custom cell rendering
cellElement.classList.toggle('is-weekend', cellData.day === 0 || cellData.day === 6);
return this.defaultRenderer(...arguments);
}
}
}
}
}
});
See also
- AgendaView — The view that uses this column
- DayCellCollecter — Mixin providing the cell data rendered here
No results
Properties
Properties are getters/setters or publicly accessible variables on this class-
Identifies an object as an instance of AgendaColumn class, or subclass thereof.
-
Identifies an object as an instance of AgendaColumn class, or subclass thereof.
Functions
Functions are methods available for calling on the classType definitions
type: agendacolumn