Hi I have a asp.net report viewer control which has been working fine as a dynamically loaded user control in a asp.net Web page. I have been adding the item to a content placeholder using the controls.add method of an update panel. I wanted to change the functionality to load the usercontrol into a RadWindow. Nothing else has changed at all, except for I am trying to add my control to an update panel in a RadWindow
The RadWindow comes up on the page and the control "appears" to be loading inside. However, there is a JavaScript error being thrown "Expected ;" and none of my report contents are displayed. Also, when I click on the refresh icon I get: "OnCommand Refresh". What am I missing here? Thanks!
<telerik:RadWindow ID="DocumentWindow" runat="server" Modal="True" VisibleOnPageLoad="false" Behaviors="Close" AutoSize="false" Height="480" Width = "640"> <ContentTemplate> <asp:UpdatePanel ID="DocumentWindowUpdatePanel" runat="server" UpdateMode="Always"> <ContentTemplate> </ContentTemplate> </asp:UpdatePanel> </ContentTemplate> </telerik:RadWindow>The RadWindow comes up on the page and the control "appears" to be loading inside. However, there is a JavaScript error being thrown "Expected ;" and none of my report contents are displayed. Also, when I click on the refresh icon I get: "OnCommand Refresh". What am I missing here? Thanks!