This is a migrated thread and some comments may be shown as answers.

Scheduler Loading Control

1 Answer 72 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Simon
Top achievements
Rank 1
Simon asked on 18 Oct 2010, 04:30 PM
How do I implement a loading control, so that a template appears with an animated gif when I press forward, back, etc.?

I have tried:

       <telerik:RadScheduler ID="radScheduler" runat="server" Height=""
        HoursPanelTimeFormat="htt" ValidationGroup="RadScheduler1"
        onresourcespopulating="radScheduler_ResourcesPopulating" ReadOnly="true"
        AppointmentStyleMode="Default" EnableDescriptionField="true"
        OnClientAppointmentCreated="clientAppointmentCreated"
        SelectedView="MonthView" ShowFooter="false" ShowAllDayRow="false"
        ShowFullTime="true" OnClientAppointmentClick="appointmentClick"
        AdvancedForm-Modal="true" Skin="Office2007" TimelineView-UserSelectable="false"
        >
         
        <AppointmentTemplate>
 
                        <div class="rsAptSubject">
                           <%# Eval("Subject") %>
                        </div>
                        <%# Eval("Description") %>
        </AppointmentTemplate>
         
        <WebServiceSettings Path="../WebServices/MyService.asmx" ResourcePopulationMode="ServerSide" />
 
        <AdvancedEditTemplate>
        <div>
            <a id="lnkDetails" href="#">View Details</a>
        </div>
        </AdvancedEditTemplate>
 
        <ResourceStyles>
            <telerik:ResourceStyleMapping Key="1" ApplyCssClass="rsCategoryGreen"/>
            <telerik:ResourceStyleMapping Key="2" ApplyCssClass="rsCategoryRed" />
        </ResourceStyles>
 
       </telerik:RadScheduler>
     
  
           <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="radScheduler">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="radScheduler" LoadingPanelID="RadAjaxLoadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
            
               <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="75px" IsSticky="false" Width="75px" Transparency="25">
    LOADING LOADING LOADING LOADING LOADING LOADING LOADING LOADING LOADING LOADING
    <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' style="border: 0;" />
</telerik:RadAjaxLoadingPanel>


Nothing appears, can you advise?

1 Answer, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 22 Oct 2010, 10:17 AM
Hi Simon,

RadAjaxLoadingPanel will not work when the RadScheduler is bound to a Web Service. Please take a look at this forum post for a workaround.

Kind regards,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Scheduler
Asked by
Simon
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Share this question
or