Adds hierarchical grouping and entity resolution support
Enhances calendar rendering with dynamic parent-child relationships between entities Introduces EntityResolver for dot-notation references Supports belongsTo configuration in grouping Implements flexible filtering across hierarchical entities Improves rendering flexibility for complex organizational structures
This commit is contained in:
parent
dd647acab8
commit
d4249eecfb
17 changed files with 403 additions and 44 deletions
|
|
@ -124,8 +124,8 @@ export class DemoApp {
|
|||
return {
|
||||
templateId: 'team',
|
||||
groupings: [
|
||||
{ type: 'team', values: ['team1', 'team2'], idProperty: 'teamId' },
|
||||
{ type: 'resource', values: ['res1', 'res2', 'res3'], idProperty: 'resourceId' },
|
||||
{ type: 'team', values: ['team1', 'team2'] },
|
||||
{ type: 'resource', values: ['EMP001', 'EMP002', 'EMP003', 'EMP004'], idProperty: 'resourceId', belongsTo: 'team.resourceIds' },
|
||||
{ type: 'date', values: dates, idProperty: 'date', derivedFrom: 'start' }
|
||||
]
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue