This should be a pretty straight-forward answer. How do I use the RadMenu itemTemplate without completely breaking the skin part of the RadMenu? I ask this because I have found the only way to click to a RadWindow to be this way (so far...)
The above WORKS perfectly, but it completely kills the Forest skin. Is there a better way to do the same thing?
My RadWindow and DataSource are set up correctly, so I leave them out of this post to avoid confusion.
I want to do exactly the same thing as above while keeping the beauty of Telerik skins. How can I do that? Anyone can answer. Thank you.
| <telerik:RadMenu ID="RadMenu1" runat="server" DataSourceID="dsBranch" |
| DataTextField="Branch_Name" Flow="Vertical" Skin="Forest"> |
| <ItemTemplate> |
| <a href="#" onclick="openRadWindow('<%# DataBinder.Eval(Container.DataItem, "Branch_ID") %>'); return false;"><%# DataBinder.Eval(Container.DataItem, "Branch_Name") %></a> |
| </ItemTemplate> |
| </telerik:RadMenu> |
The above WORKS perfectly, but it completely kills the Forest skin. Is there a better way to do the same thing?
My RadWindow and DataSource are set up correctly, so I leave them out of this post to avoid confusion.
I want to do exactly the same thing as above while keeping the beauty of Telerik skins. How can I do that? Anyone can answer. Thank you.