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