I am trying to only show 5 min intervals but no matter what I do in code its only showing ie 10:10 ,10:20
Here is what I have tried so far I am using the demo to evulate it for our company.
<telerik:RadScheduler runat="server" Skin="Bootstrap" ID="apertureAppointments" Width="100%" DataKeyField="ID" DataSubjectField="Subject" DataStartField="Start" DataEndField="End" DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentID" DataSourceID="EntityDataSource1" StartInsertingInAdvancedForm="True" RowHeight="30px" RenderMode="Auto" EnableDescriptionField="True" EnableExactTimeRendering="True" DayStartTime="10:00:00" DayView-DayStartTime="10:00:00" FirstDayOfWeek="Monday" HoursPanelTimeFormat="H:mm:ss" LastDayOfWeek="Friday" MinutesPerRow="5" > <ExportSettings OpenInNewWindow="True"> <Pdf PageBottomMargin="1in" PageLeftMargin="1in" PageRightMargin="1in" PageTopMargin="1in" /> </ExportSettings> <AdvancedForm Modal="True" /> <TimeSlotContextMenus> <telerik:RadSchedulerContextMenu ID="SchedulerTimeSlotContextMenu" runat="server"> <Items> <telerik:RadMenuItem Text="New Appointment" Value="CommandAddAppointment" /> <telerik:RadMenuItem IsSeparator="True" /> <telerik:RadMenuItem Text="New Recurring Appointment" Value="CommandAddRecurringAppointment" /> <telerik:RadMenuItem IsSeparator="True" /> <telerik:RadMenuItem Text="Go to today" Value="CommandGoToToday" /> <telerik:RadMenuItem Text="Show 24 hours..." Value="CommandShow24Hours" /> </Items> </telerik:RadSchedulerContextMenu> </TimeSlotContextMenus> <AppointmentContextMenus> <telerik:RadSchedulerContextMenu runat="server" ID="ContextMenu1"> <Items> <telerik:RadMenuItem Text="Open" Value="CommandEdit" /> <telerik:RadMenuItem IsSeparator="True" /> <telerik:RadMenuItem Text="Categorize"> <Items> <telerik:RadMenuItem Text="Development" Value="1" /> <telerik:RadMenuItem Text="Marketing" Value="2" /> <telerik:RadMenuItem Text="Personal" Value="3" /> <telerik:RadMenuItem Text="Work" Value="4" /> </Items> </telerik:RadMenuItem> <telerik:RadMenuItem IsSeparator="True" /> <telerik:RadMenuItem Text="Delete" Value="CommandDelete" /> </Items> </telerik:RadSchedulerContextMenu> </AppointmentContextMenus> <ResourceTypes> <telerik:ResourceType KeyField="ID" Name="Room" TextField="RoomName" ForeignKeyField="RoomID" DataSourceID="RoomsDataSource"></telerik:ResourceType> </ResourceTypes> <ResourceStyles> <telerik:ResourceStyleMapping Type="User" Text="Alex" ApplyCssClass="rsCategoryBlue"></telerik:ResourceStyleMapping> <telerik:ResourceStyleMapping Type="User" Text="Bob" ApplyCssClass="rsCategoryOrange"></telerik:ResourceStyleMapping> <telerik:ResourceStyleMapping Type="User" Text="Charlie" ApplyCssClass="rsCategoryGreen"></telerik:ResourceStyleMapping></ResourceStyles> </telerik:RadScheduler>
[MissingMethodException: Method not found: 'Int32 Telerik.Web.UI.UploadedFile.get_ContentLength()'.] DotNetNuke.Providers.RadEditorProvider.TelerikFileBrowserProvider.StoreFile(UploadedFile file, String path, String name, String[] arguments) +0 Telerik.Web.UI.RadFileExplorer.ProcessUploadedFiles() +1134 Telerik.Web.UI.RadFileExplorer.OnLoad(EventArgs e) +248 System.Web.UI.Control.LoadRecursive() +71 System.Web.UI.Control.LoadRecursive() +190 System.Web.UI.Control.LoadRecursive() +190 System.Web.UI.Control.LoadRecursive() +190 System.Web.UI.Control.LoadRecursive() +190 System.Web.UI.Control.LoadRecursive() +190 System.Web.UI.Control.LoadRecursive() +190 System.Web.UI.Control.LoadRecursive() +190 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3064The base class includes the field '<componentName>', but its type (Telerik.Web.UI.RadWindowManager) is not compatible with the type of control (Telerik.Web.UI.RadWindowManager).
Hi,
Please let me know how to add RadclientDatasource in toolbox
I refer the following link : http://docs.telerik.com/devtools/aspnet-ajax/controls/clientdatasource/connecting-to-web-service
But there is no RadClientDataSource in toolbox.
While copying the code from the sample application , I got the error " Unknown server tag 'telerik:RadClientDataSource'.
Kindly advise.

Hello,
I need to change the text inside the ContextHeaderMenu in a radgrid.
I have the following code on my Page_Load:
AddHandler RadGridTransmission.HeaderContextMenu.ItemCreated, AddressOf Me.ContextHeaderMenu_ItemCreated
And the following code to change text in the context menu:
Protected Sub ContextHeaderMenu_ItemCreated(ByVal sender As Object, _
ByVal e As RadMenuEventArgs)
If (e.Item.Value = "ColumnsContainer") Then
e.Item.Text = "Show/Hide columns"
ElseIf (e.Item.Level = 2) AndAlso (TryCast(e.Item.Parent, RadMenuItem).Value = "ColumnsContainer") Then
If (e.Item.Value.EndsWith("ReceiverID")) Then
e.Item.Text = "Source Receiver ID"
End If
End Sub
The part that changes the text to "Show/Hide columns" works but the one to change the text for items in "ColumnsContainer" doesn't.
It finds the item, sets the text but does not change when I run the code.
Any idea?
Thanks!

Hi,
I am using version 2015.1.401.40 of the ASP.NET controls for AJAX.
I am hiding the expand / collapse icon for mastertable rows where the detailed table has no rows. I am also setting the detail table to visible false. I'm doing both of these in the DetailTableDataBind like so:
e.DetailTableView.Visible = False
parentItem("ExpandColumn").Controls(0).Visible = False
I want the users to be able to expand and collapse all rows that have child data, so I added this property to the RadGrid: EnableHierarchyExpandAll="true"
However, that expands EVERY SINGLE ROW, even the rows where I've removed the expand / collapse button and set the detail table to invisible.
Question: Is there any way I can expand ONLY the rows that have an expand / collapse icon (only the rows that actually have detail data)?
I've looked a bit at the javascript you all use _expandAll, but don't think I can implement what I want to do...
Thanks,
Brent

Hi,
i m giving the Telerik Spreadsheet a try, because i used the WPF and Silverlight one. But as far as i can see, there s still some features missing.
I see that the only way to "customize" and "interact" with the spreadsheet is via provider. So, if i want to get data from DB i overwrite the GetSheets() method, and if i want to Save i override the SaveToWorkbook method.
1) But, what if i want to interact with the spreadsheet without postback?
2) Is there any way from listening to the Cell OnChange event ? (even on the client side would be fine)
3) In the CellContextMenu there is a OnClientItemClicked event. Are there any more events runnable from the client side?
Thanks for your support