Adds resource-based calendar view mode
Introduces new ResourceColumnDataSource and ResourceHeaderRenderer to support column rendering by resources instead of dates Enables dynamic calendar mode switching between date and resource views Updates core managers and services to support async column retrieval Refactors data source interfaces to use Promise-based methods Improves calendar flexibility and resource management capabilities
This commit is contained in:
parent
a7d365b186
commit
eeaeddeef8
19 changed files with 765 additions and 991 deletions
|
|
@ -30,7 +30,7 @@ export class DateColumnDataSource implements IColumnDataSource {
|
|||
/**
|
||||
* Get columns (dates) to display
|
||||
*/
|
||||
public getColumns(): IColumnInfo[] {
|
||||
public async getColumns(): Promise<IColumnInfo[]> {
|
||||
let dates: Date[];
|
||||
|
||||
switch (this.currentView) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue