| <asp:Panel ID="ContentHeaderPanel" runat="server" CssClass="Boxheader"> |
| <asp:DropDownList ID="ContentDropDownList" runat="server" |
| DataSourceID="ContentLinqDataSource" DataTextField="Content_Name" |
| DataValueField="Content_ID" AutoPostBack="True"> |
| </asp:DropDownList> |
| <asp:LinqDataSource ID="ContentLinqDataSource" runat="server" |
| ContextTypeName="gourmetnavigatorDataContext" OrderBy="Content_Name" |
| TableName="Content"> |
| </asp:LinqDataSource> |
| </asp:Panel> |
| <asp:Panel ID="ContentPanel" runat="server" CssClass="Boxcontent"> |
| <asp:FormView ID="ContentFormView" runat="server" DefaultMode="Edit" |
| DataSourceID="ContentdetailLinqDataSource" DataKeyNames="Contentdetail_ID"> |
| <EditItemTemplate> |
| <telerik:RadEditor ID="Contentdetail_Text" runat="server" Language="de-DE" |
| Skin="Telerik" Content='<%# DataBinder.Eval(Container.DataItem, "Contentdetail_Text") %>'> |
| <Tools> |
| <telerik:EditorToolGroup> |
| <telerik:EditorTool Name="Paste" /> |

Hi,
have a button in RadAjaxPanel. On OnClickEvent there is Response.Redirect (to a file in network share). The problem I have is that after Response.Redirect the LoadingPanel still appears on the page. Any ideas?
I have a RadAjaxManger defined in my page with the following configuration:
<telerik:RadAjaxManager ID="DefRadAjaxManager1" runat="server" >
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="MMDRadTabStrip">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="MMDGrid" />
<telerik:AjaxUpdatedControl ControlID="MMDRadTabStrip" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
And then in the Page_Load event I added the setting for the the DatePicker since this was the only way to get the SelectedDateChanged event to fire.
RadAjaxManager manager = (RadAjaxManager)this.DefRadAjaxManager1;
manager.AjaxSettings.AddAjaxSetting(MMDDatePicker, MMDGrid,
null);
Currently changing the date on the datepicker is causing the TabClick event to fire on the RadTabStrip and vice-versa.
How can I set the update mode to be conditional (similar to UpdatePanel) for these 2 controls as they both update the RadGrid and I wouldn't want one to interfere with the other since otherwise NeedDataSource is being called multiple times ?
Thanks