Hello,
I implemented a daypilot scheduler view for a project, showing all users and their projects.
I implemented some filters outside the DayPilot scheduler (but on same web page) that are applied on initial load.
Since the users got many more (800 instead of 150 / 180 days in grid) now I need to switch to dynamic load.
I figured out how to use OnLoadNode in MVC controller. But I dont know how to get those actual additional parameters from the webpage.
Can you please help me here?
Thanks.
PS: my OnLoadNode code:
protected override void OnLoadNode(LoadNodeArgs e)
{
if (unloadedResources.ContainsKey(e.Resource.Id))
{
foreach (Resource r in unloadedResources[e.Resource.Id])
{
e.Resource.Children.Add(r);
}
e.Resource.Expanded = true;
BindData();
Update(CallBackUpdateType.Full);
}
}