Hi all,
I have a Web Page which contains a RadMenu and a ASP Panel.
Everytime a user clicks on a RadMenuItem I'm loading dynamically a usercontrol:
Panel.Controls.Clear();
UserControl c = (UserControl)LoadControl("~/UserControls/" + userControl.TrimEnd());
c.ID = c.ToString();
Panel.Controls.Add(c);
The problem is that in this new usercontrol I'm trying to recreate below demo just like it is, inside the usercontrol:
It doesn't work at all! The RadCalendar doesn't even fire RadCalendar1_SelectionChanged event!
Can you provide me a simple example/project accomplishing this ? ? ?
(I have tried recreating this demo inside a normal Web Page and it works fine)
I'm using VS2008 SP1 with Telerik AJAX 2009.3.1314.35
Thanks for your help.
Nuno