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

MonthView-MinimumRowHeight of the scheduler not working

1 Answer 80 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Developer
Top achievements
Rank 1
Developer asked on 17 Feb 2014, 04:38 PM
I am using rad scheduler and i want to fix the MinimumRowHeight of the scheduler.
I tried using MonthView-MinimumRowHeight="4", and it is working fine when MonthView-AdaptiveRowHeight="false"
But minimum row height property is not working when i set   MonthView-AdaptiveRowHeight="true".
Can any one please  guide me how to use both of these properties together.

<telerik:RadScheduler ID="RadScheduler1" runat="server" EnableDescriptionField="true" Width="800px" ReadOnly="True" 
                                OnAppointmentDataBound="RadScheduler1_AppointmentDataBound"  MonthView-VisibleAppointmentsPerDay="10"
                                SelectedView="MonthView"  Height="800px" MonthView-MinimumRowHeight="3" MonthView-AdaptiveRowHeight="true">

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 18 Feb 2014, 06:50 AM
Hi,

AdaptiveRowHeight is indicating whether the height of each row should be adjusted to match the height of the content. If the field value is true then each row should be adjusted to match the height of its content; false means all rows should be with same height. MinimumRowHeight is indicating the minimum row height in month view. MinimumRowHeight property is ignored when AdaptiveRowHeight is set to true. As a work around please try the following CSS to achieve your scenario.

CSS:
<style type="text/css">
    .rsWrap, .rsDateWrap, .rsLastWrap
    {
        height: 55px !important;
    }
</style>

Thanks,
Shinu.

Tags
Scheduler
Asked by
Developer
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or