Hello John,
The following article treats using a RadWindow with AJAX: http://www.telerik.com/help/aspnet-ajax/window-ajaxifying.html.
Here is a basic example of how to use it, based on my previous sample. It does the same thing, but with asp:UpdatePanel instead of RadAjax:
<asp:Button ID="repD" Text="repD" OnClick="repD_Click" runat="server" /><telerik:RadWindow ID="rwinDetail" runat="server" RestrictionZoneID="ContentTemplateZone" Modal="false" Width="450" Height="300" Behaviors="Close,Move,Resize,Minimize" Visible="True"> <ContentTemplate> <asp:UpdatePanel ID="Updatepanel1" runat="server"> <Triggers> <asp:AsyncPostBackTrigger ControlID="repD" /> </Triggers> <ContentTemplate> <div style="font-size:small;" id="Div1"> <asp:Repeater ID="repDetail" runat="server"> . . . . </asp:Repeater> </div> </ContentTemplate> </asp:UpdatePanel> </ContentTemplate></telerik:RadWindow> Regards, Marin Bratanov
Telerik
See What's Next in App Development. Register for TelerikNEXT.