Hi
I have several dynamically created dock windows and I want to add a hyperlinks into the titlebar. I've been trying to implent and itemplate class but not getting on that well..
As it stands heres what I have which does not seem to display anything in the titlebar
Do I need to call and add method to add the title bar template here?
Currently this appears to do nothing and does not show my hyperlink in the titlebar. Your help or links to examples would be great. - Thanks..
Johnathan
I have several dynamically created dock windows and I want to add a hyperlinks into the titlebar. I've been trying to implent and itemplate class but not getting on that well..
As it stands heres what I have which does not seem to display anything in the titlebar
.....
Private Function CreateRadDock(ByVal ItemType As Integer, ByVal itemid As Integer, ByVal DashItemId As Integer, ByVal row As Integer, ByVal title As String) As Telerik.Web.UI.RadDock Dim Placeholder As New PlaceHolder Dim dock As New RadDock() dock.DockMode = DockMode.Docked dock.ID = DashItemId.ToString dock.Title = title dock.Width = Unit.Percentage(100) dock.Height = Unit.Pixel(335) dock.AutoPostBack = True Dim titleBarTemplate = New DockTitleTemplate
..... etcDo I need to call and add method to add the title bar template here?
Class DockTitleTemplate Implements ITemplate Public Sub InstantiateIn(ByVal container As Control) Implements ITemplate.InstantiateIn Dim link1 As New HyperLink() link1.ID = "link1" link1.Text = "my linke text" link1.NavigateUrl = "#" container.Controls.Add(link1) End SubEnd ClassCurrently this appears to do nothing and does not show my hyperlink in the titlebar. Your help or links to examples would be great. - Thanks..
Johnathan
