Hello,
could somebody help me with the following problem. I have an appointment that start at 10:00 and end at 10:30 the same day. In a DayView and WeekView (http://www.ibaut.eu/Projects/MBA/WeekView.jpg) looks everything ok, but problem occure in a MonthView, where this appointment is displayed over two days (http://www.ibaut.eu/Projects/MBA/MonthView.jpg).
Thanks for any help.
could somebody help me with the following problem. I have an appointment that start at 10:00 and end at 10:30 the same day. In a DayView and WeekView (http://www.ibaut.eu/Projects/MBA/WeekView.jpg) looks everything ok, but problem occure in a MonthView, where this appointment is displayed over two days (http://www.ibaut.eu/Projects/MBA/MonthView.jpg).
Thanks for any help.
7 Answers, 1 is accepted
0
Hello Milan,
Are you using any custom css styles for RadScheduler? Or, maybe you have some other external css styles which affect the appearance of RadScheduler. Either way, we cannot provide you with suggestions just by looking at the screenshots. If you can send us a live url with the problem we might be able to give you specific instructions how to remove this problem.
Best wishes,
Peter
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Are you using any custom css styles for RadScheduler? Or, maybe you have some other external css styles which affect the appearance of RadScheduler. Either way, we cannot provide you with suggestions just by looking at the screenshots. If you can send us a live url with the problem we might be able to give you specific instructions how to remove this problem.
Best wishes,
Peter
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Milan
Top achievements
Rank 1
answered on 06 Jun 2008, 06:53 AM
Hello Peter,
thank You for your interest. I've tried to remove all css styles, but problem persist. You can find my application in http://beta.barnmanager.net/LessonCalendar_v200.aspx?showType=WeekView when you login as demo/demo/demo. I've found that problem is only in IE, when I show page in Opera browser everything is OK.
thank You for your interest. I've tried to remove all css styles, but problem persist. You can find my application in http://beta.barnmanager.net/LessonCalendar_v200.aspx?showType=WeekView when you login as demo/demo/demo. I've found that problem is only in IE, when I show page in Opera browser everything is OK.
0
Hello Milan,
It seems that the Scheduler is inheriting some of the other styles on the page. Including the following style on your page should fix the problem:
<style type="text/css">
.RadScheduler td.rsCell
{
text-align: left;
}
</style>
I hope this helps.
Sincerely yours,
Dimitar Milushev
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
It seems that the Scheduler is inheriting some of the other styles on the page. Including the following style on your page should fix the problem:
<style type="text/css">
.RadScheduler td.rsCell
{
text-align: left;
}
</style>
I hope this helps.
Sincerely yours,
Dimitar Milushev
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Milan
Top achievements
Rank 1
answered on 11 Jun 2008, 05:15 AM
Now it is working, how I need.
Thank You.
Thank You.
0
scott
Top achievements
Rank 1
answered on 12 Jun 2008, 05:06 PM
Hi,
I was having the same problem and the style sheet fixed it in monthview. But now I have the same problem in timeline view. Can you help with this one too?
Thanks
I was having the same problem and the style sheet fixed it in monthview. But now I have the same problem in timeline view. Can you help with this one too?
Thanks
0
Milan
Top achievements
Rank 1
answered on 13 Jun 2008, 01:09 PM
This style helps me in timeline view.
.rsContent
TD
{
text-align: left;
}
0
scott
Top achievements
Rank 1
answered on 16 Jun 2008, 04:21 PM
That did the trick. Thanks for your help.