Hello,
I work on a page with different fields for a form. Some are updated when the user picks dates. I added a repeater in my page that should be updated to. This repeater is in a panel and my panel is in the RadAjaxManagerProxy. After the update everything is fine except that my panel has been duplicated in another location in my page. Also the duplicated panel is updated but not the original one. If I try a button of the original repeater, I have an error: Invalid JSON primitive: . Any idea about this duplication?
Thank you
Here is some of my code simplified
[...]
<asp:Panel ID="myPanel" runat="server">
<tr>
<td colspan="2">
<rpt:myRepeater ID="myRepeater" runat="server" Visible="false"/>
</td>
</tr>
</asp:Panel>
[...]
<telerik:RadAjaxManagerProxy ID="rampPortfolioDetail" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="rdpSettlementDate">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="textbox1"/>
<telerik:AjaxUpdatedControl ControlID="raddatepicker1" LoadingPanelID="myloadingpanel"/>
<telerik:AjaxUpdatedControl ControlID="literal1"/>
<telerik:AjaxUpdatedControl ControlID="radatepicker2"/>
<telerik:AjaxUpdatedControl ControlID="literal2"/>
<telerik:AjaxUpdatedControl ControlID="sharedCalendar"/>
<telerik:AjaxUpdatedControl ControlID="myPanel" />
<telerik:AjaxUpdatedControl ControlID="labelTest"/>
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
I work on a page with different fields for a form. Some are updated when the user picks dates. I added a repeater in my page that should be updated to. This repeater is in a panel and my panel is in the RadAjaxManagerProxy. After the update everything is fine except that my panel has been duplicated in another location in my page. Also the duplicated panel is updated but not the original one. If I try a button of the original repeater, I have an error: Invalid JSON primitive: . Any idea about this duplication?
Thank you
Here is some of my code simplified
[...]
<asp:Panel ID="myPanel" runat="server">
<tr>
<td colspan="2">
<rpt:myRepeater ID="myRepeater" runat="server" Visible="false"/>
</td>
</tr>
</asp:Panel>
[...]
<telerik:RadAjaxManagerProxy ID="rampPortfolioDetail" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="rdpSettlementDate">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="textbox1"/>
<telerik:AjaxUpdatedControl ControlID="raddatepicker1" LoadingPanelID="myloadingpanel"/>
<telerik:AjaxUpdatedControl ControlID="literal1"/>
<telerik:AjaxUpdatedControl ControlID="radatepicker2"/>
<telerik:AjaxUpdatedControl ControlID="literal2"/>
<telerik:AjaxUpdatedControl ControlID="sharedCalendar"/>
<telerik:AjaxUpdatedControl ControlID="myPanel" />
<telerik:AjaxUpdatedControl ControlID="labelTest"/>
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>