
| WebForm_InitCallback();Sys.Application.add_init(function() { |
| $create(Telerik.Web.UI.RadTreeView, ... |
| <Legend Visible="true"> |
| <Appearance Position-AlignedPosition="TopLeft" Location="OutsidePlotArea"> |
| </Appearance> |
| </Legend> |
Hi,
I am facing calendar issue in Custom Control in dynamically loaded RadDocks. In my dashboard what I am doing is selecting Custom Control from dropdown and loading it to RadDockZone dynamically. For this I have 2 static RadDockZones and I am creating RadDock dynamically, loading Custom Control to Raddock .
Now the problem is my Calendar in Custom Control does not fire any events selection changed or any navigating to a diff month etc
The calendar is displaying in Rad Dock with the following code snippet
dock.UniqueName = Guid.NewGuid().ToString().Replace('-', 'a');
But any event related to calendar is not firing.
If i try to change the Month from Calendar the Rad Dock layout is completely disappeared
Any Fix for the Problem?
Regards,
Naga Sridhar Madiraju
Dim ChildItem As Telerik.Web.UI.RadMenuItem = New Telerik.Web.UI.RadMenuItem("MyControl")
ChildItem.Controls.Add(MyUserControl)
(The user control has the html)
var item = new Telerik.Web.UI.RadMenuItem();
item.set_text('<div style="width: 100px; height: 150px">My template data</div>');
This actually works but it appears to have the menu item functionality overlaid.
Thanks!