Hi, i want to know is exists any sample that show me how to add a combo (or check list) for display in may Scheduler only specific resource
1 Answer, 1 is accepted
0
Plamen
Telerik team
answered on 23 Mar 2012, 02:50 PM
Hello Roberto,
You can refer to this KB article where is show similar functionality. Here is the code that I added in order to display one resource that is chosen from RadCombobox:
int pageIndex = (int?)ViewState["PageIndex"] ?? 0;
pageIndex = Int32.Parse(e.Value);
ViewState["PageIndex"] = pageIndex;
RadScheduler1.Rebind();
}
private const int PageSize = 1;
Hope this will be helpful.
Kind regards,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.