Is there anyway to use RadAjaxManager to update controls contained in a FormView Template? Right now I have the FormView inside of a RadAjaxPanel and everything works as expected, but now the Validators do not work due to the incompatiability.
I was hoping I could by pass ths by using RadAjaxManager and not Ajax everything.
To see this behavoir I have included a Formview Control with 2 dropdown boxes and a RadAjaxManagerProxy. As you can see when you configure the RadAjaxManager the combo boxes do not appear as available for selection.
Any help would greatly be appreciated.
Thanks!
I was hoping I could by pass ths by using RadAjaxManager and not Ajax everything.
To see this behavoir I have included a Formview Control with 2 dropdown boxes and a RadAjaxManagerProxy. As you can see when you configure the RadAjaxManager the combo boxes do not appear as available for selection.
Any help would greatly be appreciated.
Thanks!
<asp:FormView ID="FormView1" runat="server"> |
<ItemTemplate> |
<asp:DropDownList ID="DropDownList1" runat="server"> |
</asp:DropDownList> |
<asp:DropDownList ID="DropDownList2" runat="server"> |
</asp:DropDownList> |
</ItemTemplate> |
</asp:FormView> |
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server"> |
</telerik:RadAjaxManagerProxy> |