Hello.
I was wondering if someone has experienced this problem and knows how to fix it.
In my web application, when a page with a RadScheduler component is launched, the current date is displayed on top of the component in the following format: Tuesday, August 30, 2011.
After a second or two, the date changes to 8/30/2011.
What should I do to prevent the change in the date format?
Thank you in advance.
Paulo
Error in: https://myserver/cloud/Telerik.Web.UI.WebResource.axd?type=rau
Error message: Request timed out.
I checked with one who got it several times and it sounds like she is running Silverlight. Is there a setting I need to tweak to keep it from timing out?
I am tryin to use RadScheduler to display a month-vew with 5-6 events a month in the calendar. Each event has a Subject, start time, end time and description that needs to be displayed. None of the events will be on the same day. How can I get these events to fill up the entire cell (day) in the scheduler so that all of the info is visible (about 85 pixels high)? Adjusting the row height allows for this display but it also makes each cell longer and I can not fit the entire calendar in a single screen without scrolling. My code is as follows:
<telerik:RadScheduler ID="RadScheduler1" runat="server" DataDescriptionField="description" DataEndField="end_time" DataKeyField="pk_training_session_id" DataSourceID="SqlDataSource1" DataStartField="start_time" DataSubjectField="session_type" EnableDescriptionField="True" FirstDayOfWeek="Monday" Height="550px" LastDayOfWeek="Friday" SelectedView="MonthView" CustomAttributeNames="registration_link"> <AppointmentTemplate> <div style="margin-bottom: 4px;"> <b> <asp:HyperLink ID="RegistrationLinkHyperLink" runat="server" Text='<%# Eval("Subject") %>' NavigateUrl='<%# Eval("registration_link") %>' ToolTip="Click to Register"></asp:HyperLink> </b> </div> <div> <span style="width: 60px; display: inline-block;">Start Time:</span> <%# Eval("Start", "{0:t}") %></div> <div style="margin-bottom: 4px;"> <span style="width: 60px; display: inline-block;">End Time:</span> <%# Eval("End", "{0:t}") %></div> <p> <%# Eval("Description") %> </p> </AppointmentTemplate> </telerik:RadScheduler>
Does anyone know of a solution?
<system.webServer> <handlers><add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode,runtimeVersionv2.0"/> </handlers> </system.webServer>