Hi, i want to change the ContentUrl of a RadPane by using a RadButton of type LinkType. I'm using 2012.3.1308.40 and 2014.2.618.40.
I think i'm missing something because there were a simple and neat mode to achieve this without using an iframe inside the RadPanel or additional javascript.
I think i'm missing something because there were a simple and neat mode to achieve this without using an iframe inside the RadPanel or additional javascript.
01.<!DOCTYPE html>02.<html xmlns="http://www.w3.org/1999/xhtml">03.<head runat="server">04. <title></title>05. <style type="text/css">06. html, body, form {07. width: 100%;08. height: 100%;09. padding: 0;10. margin: 0;11. border-collapse: collapse;12. }13. </style>14.</head>15.<body>16. <form id="form1" runat="server">17. <telerik:RadScriptManager ID="RadScriptManager1" runat="server" />18. <telerik:RadSplitter Height="100%" ID="RadSplitter1" Orientation="Horizontal" runat="server" Width="100%">19. <telerik:RadPane Height="36px" ID="headerPane" runat="server" Width="100%">20. <telerik:RadButton ButtonType="LinkButton" ID="test" NavigateUrl="http://www.telerik.com" runat="server" Target="contentPane" Text="TEST" />21. </telerik:RadPane>22. <telerik:RadPane ContentUrl="about:blank" Height="500px" ID="contentPane" runat="server">23. </telerik:RadPane>24. </telerik:RadSplitter>25. </form>26.</body>27.</html>