This is a migrated thread and some comments may be shown as answers.

RadAjaxPanel RadDock Issue

4 Answers 46 Views
AjaxPanel
This is a migrated thread and some comments may be shown as answers.
J
Top achievements
Rank 1
J asked on 03 Jan 2019, 05:36 PM

     Hello, 

 

I have a RadDock in a RadZoneDock and when I put a RadAjaxPanel that encompasses the entire page, one of my docks goes blank (see attachment).  When remove Ajax, it works.  What should I look at please?

 

<telerik:RadAjaxPanel ID="RadAjaxPanel" runat="server" LoadingPanelID="RadAjaxLoadingPanel" Width="100%">

Page content.

</telerik:RadAjaxPanel>

 

Thank you,

Josh

4 Answers, 1 is accepted

Sort by
0
Attila Antal
Telerik team
answered on 04 Jan 2019, 04:35 PM
Hi Josh,

Try using the RadAjaxManager and see if the same issue happens. To ease the configuration, wrap all the controls in a Panel and enable AJAX for the panel only. Every control in the Panel including the panel itself will have AJAX enabled.

For Example:

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="Panel1">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="Panel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>
 
<asp:Panel ID="Panel1" runat="server">
    <telerik:RadDockZone ID="RadDockZone1" runat="server" Height="300px" Width="300px">
        <telerik:RadDock runat="server" ID="RadDock1">
            <ContentTemplate>
                <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
            </ContentTemplate>
        </telerik:RadDock>
        <telerik:RadDock runat="server" ID="RadDock2">
            <ContentTemplate>
                <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
            </ContentTemplate>
        </telerik:RadDock>
    </telerik:RadDockZone>


Kind regards,
Attila Antal
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
J
Top achievements
Rank 1
answered on 04 Jan 2019, 07:03 PM

I've tried a RadAjaxManagerProxy as a master is using the RadAjaxManager.  The RadZone and RadDoc have been in a panel the whole time and its not working.

Is there anything else I should try?

Thank you for your help!

0
J
Top achievements
Rank 1
answered on 07 Jan 2019, 04:29 PM

Using 

.rdTitleBar EM
    {
        width: 50% !important;
    }

from this fixed it. 

https://www.telerik.com/forums/title-bar-blank

0
Attila Antal
Telerik team
answered on 09 Jan 2019, 05:46 PM
Hi Josh,

I am glad to hear the issue has been sorted out.

Should any question arise, please let us know.

Kind regards,
Attila Antal
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
AjaxPanel
Asked by
J
Top achievements
Rank 1
Answers by
Attila Antal
Telerik team
J
Top achievements
Rank 1
Share this question
or