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

Calendar days of the week and hours a day

1 Answer 222 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Alfredo Moreno
Top achievements
Rank 1
Alfredo Moreno asked on 08 Jun 2012, 04:19 AM
Hello,

I'm trying to make a calendar that contains only day of the week (Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and Sunday), 24 hours a day, something like the Scheduler. But I do not want to get dates, but simply the day of the week and time you select. Is there some control to help me with this project?

Added the example picture.

Thank you.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 08 Jun 2012, 06:00 AM
Hi Alfredo Moreno,

You can customize RadScheduler to achieve your scenario as follows.

ASPX:
<telerik:RadScheduler ID="RadScheduler1" runat="server" SelectedView="WeekView" FirstDayOfWeek="Monday" LastDayOfWeek="Sunday" ShowFullTime="true" .....>
   ......
   <WeekView UserSelectable="true"  ColumnHeaderDateFormat="dddd" />
</telerik:RadScheduler>

CSS:
<style type="text/css">
  .RadScheduler_Default .rsTopWrap .rsFooter,.RadScheduler_Default .rsHeader
   {
       display:none !important;
   }
</style>

Attached is the Screenshot. Hope this helps.

Thanks,
Princy.
Tags
General Discussions
Asked by
Alfredo Moreno
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or