Seems to do async half of the time, full the other half.
I'm not having the best luck with Prometheus so far. Every (simple)scenario I have tested it in has failed in one way or another.
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="75px"
Width="75px">
<asp:Image ID="Image1" runat="server" AlternateText="Loading..." ImageUrl="~/RadControls/Ajax/Skins/Default/Loading.gif" />
</telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
<label>Template</label>
<asp:DropDownList ID="ddTemplates" runat="server"
DataTextField="description" DataValueField="templateid"
OnSelectedIndexChanged="ddTemplates_Changed" AutoPostBack="true">
</asp:DropDownList>
<label>Template Slots</label>
<radG:RadGrid ID="rgTemplateSlots" runat="server" OnNeedDataSource="rgTemplateSlots_NeedDataSource">
<MasterTableView DataKeyNames="TemplateSlotId" AutoGenerateColumns="false">
<Columns>
<radG:GridEditCommandColumn ItemStyle-CssClass="img" ButtonType="ImageButton"
EditImageUrl="~/Images/Edit.gif">
</radG:GridEditCommandColumn>
<radG:GridBoundColumn HeaderText="Shortcut" DataField="Shortcut"></radG:GridBoundColumn>
</Columns>
<EditFormSettings EditFormType="Template" CaptionDataField="shortcut" CaptionFormatString="Editing {0}">
<FormStyle BackColor="White" />
<FormTemplate>
<radE:RadEditor ID="txtSlot" runat="server"
DocumentsFilters="*.pdf,*.doc"
ImagesFilters="*.gif,*.jpg,*.bmp,*.png"
Html='<%#Eval("Markup") %>'
</radE:RadEditor>
</FormTemplate>
</EditFormSettings>
</MasterTableView>
</radG:RadGrid>
</telerik:RadAjaxPanel>