I implemented a Grid inside an Iframe.
The grid is correctly showed inside the iframe.
But, for exemple, i want to navigate inside the grid with the pager or if i want to edit a record, i see wel the loadingpanel but after is the result a blank page inside the panel.
Any idee about this problem ?
Here is the code:
<form id="mainForm" runat="server">
<asp:Panel ID="PanelBody" runat="server" SkinID="PageBody">
<asp:Panel ID="PanelTitle" runat="server" SkinID="PageHeader">
</
asp:Panel>
<asp:Panel ID="PanelOverviewCountry" runat="server" SkinID="PageContent">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadGrid1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel" runat="server" Height="75px" Width="75px" Transparency="20">
<img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' style="border:0;" />
</telerik:RadAjaxLoadingPanel>
<telerik:RadGrid ID="RadGrid1" Skin="WebBlue" Width="99%"
AllowSorting="True" PageSize="18" AllowPaging="True"
AllowMultiRowSelection="False" runat="server" Gridlines="None"
AutoGenerateColumns="False" AllowAutomaticInserts="true" AllowAutomaticUpdates="true"
OnItemUpdated="RadGrid1_ItemUpdated" OnItemInserted="RadGrid1_ItemInserted"
OnDataBound="RadGrid1_DataBound" OnItemCreated="RadGrid1_ItemCreated" ShowGroupPanel="true">
<MasterTableView Width="99%" Summary="RadGrid table" AutoGenerateColumns="false"
commandItemDisplay="TopAndBottom" DataKeyNames="CountryId" EditMode="InPlace">
<Columns>
<telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn">
<ItemStyle CssClass="MyImageButton" />
</telerik:GridEditCommandColumn>
<telerik:GridBoundColumn DataField="CountryId" HeaderText="Id" ReadOnly="true" SortExpression="CountryId" UniqueName="CountryId" Visible="false"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="DisplayName" HeaderText="Display Name" SortExpression="DisplayName" UniqueName="DisplayName"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Name" HeaderText="Name" SortExpression="name" UniqueName="Name"></telerik:GridBoundColumn>
</Columns>
<EditFormSettings ColumnNumber="2" CaptionDataField="DisplayName" CaptionFormatString="Edit properties of Country {0}">
<FormTableItemStyle Wrap="False"></FormTableItemStyle>
<FormCaptionStyle CssClass="EditFormHeader"></FormCaptionStyle>
<FormMainTableStyle GridLines="None" CellSpacing="0" CellPadding="3" BackColor="White" Width="100%" />
<FormTableStyle CellSpacing="0" CellPadding="2" Height="110px" BackColor="White" />
<FormTableAlternatingItemStyle Wrap="False"></FormTableAlternatingItemStyle>
<EditColumn ButtonType="ImageButton"
InsertText="Insert country" UpdateText="Update country" UniqueName="EditCommandColumn1" CancelText="Cancel edit">
</EditColumn>
</EditFormSettings>
</MasterTableView>
<PagerStyle Mode="NextPrevAndNumeric" />
</telerik:RadGrid>
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="WebBlue">
</telerik:RadWindowManager>
</asp:Panel>
</
asp:Panel>
Thanks for your help.