Hi all,
I am using appointment template to display appointment. If at same time interval there are more than 3 appointment its going to overlapped. Is there is any way by which we fix the width of appointment template, so that they will not overlapped,
thanks
3 Answers, 1 is accepted
0
Plamen
Telerik team
answered on 19 Oct 2011, 08:38 AM
Hello Ranjan,
You can try to add the following CSS which works at the Template demo:
.rsCustomAppointmentContainer div
{
width:100%!important;
}
Hope this will help.
Regards,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Hi Plamen Zdravkov ,
That's fine after using this code all the appointment is visible but if content is more then it goes to next line and if appointment content is very big then it's bottom portion is not visible. Can i increase the height of time span based on content of appointment template so that the whole appointment template content will be visible?????????
0
Plamen
Telerik team
answered on 09 Nov 2011, 07:27 PM
Hi Ranjan,
Here is the new CSS that helped me for that:
.rsCustomAppointmentContainer h2
{
overflow: hidden!important;
white-space: nowrap!important;
text-overflow: ellipsis !important;
}
Best wishes,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now