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

RadSchedulerRecurrenceEditor Dynamic Height

1 Answer 58 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Rengo
Top achievements
Rank 1
Rengo asked on 12 Feb 2013, 04:45 PM
Hello,

Does anyone know the CSS styling that will set the dynamic height so all of the weekdays to be displayed within the RadSchedulerRecurrenceEditor container?



The following is the CSS applied to the RadSchedulerRecurrenceEditor control displayed above:
  <style type="text/css">
    .RecurrenceEditor .rsAdvPatternPanel
     {  
       position:absolute;
       margin-left: 0px !important;
       padding: 0px 0px 0px 0px;
       width: 120px !important;
     }
   
    .rsAdvWeekly_WeekDays li
     {
          margin-left: 0px;
          width: auto !important;
     }
    </style>

Thank You!

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 13 Feb 2013, 05:35 AM
Hi Rengo,

Please check the following CSS I tried to show all the weekdays inside the RadScheduler RecurrenceEditor container.

ASPX:
<telerik:RadScheduler ID="RadScheduler1" runat="server" AllowInsert="true" AppointmentContextMenuSettings-EnableDefault="true"
    TimeSlotContextMenuSettings-EnableDefault="true" DataDescriptionField="Description"
    DataEndField="End" DataKeyField="ID" DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurranceParentID"
    DataReminderField="Reminder" DataSourceID="SqlDataSource1" DataStartField="Start"
    DataSubjectField="Subject" Height="" EnableAdvancedForm="true">
    <Localization AllDay="All Days" />
</telerik:RadScheduler>

CSS:
<style type="text/css">
.RadScheduler .rsAdvFormWrap
{
    height: 320px !important;
    width: 600px !important;
}
         
.RecurrenceEditor_Default div.rsAdvPatternPanel
{
    height: 200px !important;
    width: 380px !important;
}
         
.RecurrenceEditor .rsAdvWeekly_WeekDays li
{
    float: none !important;
}
</style>

Thanks,
Princy.
Tags
Scheduler
Asked by
Rengo
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or