Won't Fix
Last Updated: 15 Jun 2015 11:31 by ADMIN
A sample project for reproducing the issue is attached:

Each of the pages in the ContentUrl properties has an alert("PageName") displayed at pageLoad.

1, Brows the Default.aspx - an alert - page1 occurs

2. Select Level 2 tab, which would load the subTab - Page4 and the "page4" alert should be shown.

Problem : In addition to the "page4" alert - the "page5" alert is raised and the page5.aspx had been loaded along with page4.aspx.

----------------------------------

Workaround:
To workaround this issue, set the PageViewID property of the parent tab to be with the same value as the PageViewID property on the selected child tab.

<telerik:RadTabStrip runat="server" ID="RadTabStrip1" MultiPageID="rmpPages" Width="100%">
    <Tabs>
        <telerik:RadTab Text="Level 1" Selected="true" PageViewID="page1">
            <Tabs>
                <telerik:RadTab Text="Page 1" PageViewID="page1" Selected="true" />
                <telerik:RadTab Text="Page 2" PageViewID="page2" />
                <telerik:RadTab Text="Page 3" PageViewID="page3" />
            </Tabs>
        </telerik:RadTab>
        <telerik:RadTab Text="Level 2" PageViewID="page4">
            <Tabs>
                <telerik:RadTab Text="Page 4" PageViewID="page4" Selected="true" />
                <telerik:RadTab Text="Page 5" PageViewID="page5" />
                <telerik:RadTab Text="Page 6" PageViewID="page6" />
            </Tabs>
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>

<telerik:RadMultiPage runat="server" ID="rmpPages">

    <telerik:RadPageView runat="server" ID="page1" ContentUrl="page1.aspx" Selected="true" />
    <telerik:RadPageView runat="server" ID="page2" ContentUrl="page2.aspx" />
    <telerik:RadPageView runat="server" ID="page3" ContentUrl="page3.aspx" />
    <telerik:RadPageView runat="server" ID="page4" ContentUrl="page4.aspx" />
    <telerik:RadPageView runat="server" ID="page5" ContentUrl="page5.aspx" />
    <telerik:RadPageView runat="server" ID="page6" ContentUrl="page6.aspx" />

</telerik:RadMultiPage>
Completed
Last Updated: 12 Jun 2015 13:39 by Alex
Completed
Last Updated: 12 Jun 2015 12:16 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
2

			
Completed
Last Updated: 12 Jun 2015 10:45 by ADMIN
The issue is reproducible with RadAlert, RadConfirm and RadPrompt dialogs without setting Behavior Move and DestroyOnClose="true"
Completed
Last Updated: 12 Jun 2015 08:08 by ADMIN
Completed
Last Updated: 11 Jun 2015 14:16 by ADMIN
Completed
Last Updated: 10 Jun 2015 10:13 by ADMIN
Completed
Last Updated: 09 Jun 2015 13:00 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Programmatic configuration of the data binding of markers is unavailable from the code behind.  

For example:
 RadMap1.DataBindings.MarkerBinding.DataShapeField = "Shape";
 RadMap1.DataBindings.MarkerBinding.DataTitleField = "City";
 RadMap1.DataBindings.MarkerBinding.DataLocationLatitudeField = "Latitude";
 RadMap1.DataBindings.MarkerBinding.DataLocationLongitudeField = "Longitude";
Completed
Last Updated: 28 May 2015 07:13 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Won't Fix
Last Updated: 27 May 2015 08:16 by ADMIN
Completed
Last Updated: 26 May 2015 12:13 by ADMIN
Completed
Last Updated: 22 May 2015 04:35 by ADMIN
ADMIN
Created by: Slav
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 21 May 2015 13:56 by ADMIN
As a workaround use the overload method Dock(String zoneID):

RadDock1.Dock(RadDockZone1.ClientID);
Completed
Last Updated: 20 May 2015 13:30 by ADMIN
ADMIN
Created by: Rumen
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 20 May 2015 11:49 by ADMIN