Has anyone ever had their appointments show up one on top of the other? I'm trying to figure out what I'm doing wrong here, but I can't seem to find anything.
I'm building my scheduler in SharePoint, but have a working project out of it running in IE6... the appointments are fine there, but are completely screwed up in MOSS.
When I try and move the appointments that use different resources (i.e. a conference room or a projector), they appear overlapping instead of lining up side by side.
Any thoughts, suggestions, comments?
Thanks,
Amanda
I'm building my scheduler in SharePoint, but have a working project out of it running in IE6... the appointments are fine there, but are completely screwed up in MOSS.
When I try and move the appointments that use different resources (i.e. a conference room or a projector), they appear overlapping instead of lining up side by side.
Any thoughts, suggestions, comments?
Thanks,
Amanda
7 Answers, 1 is accepted
0
Hello Amanda,
Probably this is because RadScheduler inherits some generic css styles you have on your page. If you can send us a live url demonstrating the problem we could provide you with a specific css fix to this problem.
Kind regards,
Peter
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Probably this is because RadScheduler inherits some generic css styles you have on your page. If you can send us a live url demonstrating the problem we could provide you with a specific css fix to this problem.
Kind regards,
Peter
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
0
Amanda
Top achievements
Rank 1
answered on 30 Mar 2009, 02:07 PM
Hi Peter,
Unfortunately, we only have intra here, does Telerik do anything like WebX or netmeeting?
Amanda
Unfortunately, we only have intra here, does Telerik do anything like WebX or netmeeting?
Amanda
0
Hello Amanda,
Could you please try applying the following CSS to your scheduler?
<telerik:RadScheduler style="text-align:left" >
There is a known issue of RadScheduler in IE which is causing similar behavior in internet explorer.
Best wishes,
Albert
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Could you please try applying the following CSS to your scheduler?
<telerik:RadScheduler style="text-align:left" >
There is a known issue of RadScheduler in IE which is causing similar behavior in internet explorer.
Best wishes,
Albert
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
0
Amanda
Top achievements
Rank 1
answered on 01 Apr 2009, 01:45 PM
Hi Albert,
I tried adding in that bit that you suggested, it doesn't seem like style is an option in the <telerik:RadScheduler>, it doesn't come up in the auto complete, and it also doesn't seem to change anything.
Like I mentioned in the support ticket, it seems like when I change
to
the appointments line up properly, but the gridlines are uneven... I had an issue with that before and was told to change the rowheight in the stylesheet to height: 24px;
Maybe I should switch back to the Q3 scheduler for this project in SharePoint?
Amanda
I tried adding in that bit that you suggested, it doesn't seem like style is an option in the <telerik:RadScheduler>, it doesn't come up in the auto complete, and it also doesn't seem to change anything.
Like I mentioned in the support ticket, it seems like when I change
| EnableEmbeddedBaseStylesheet="false" |
| EnableEmbeddedBaseStylesheet="true" |
Maybe I should switch back to the Q3 scheduler for this project in SharePoint?
Amanda
0
Hi Amanda,
If this is an option for you (not upgrading) you ca use the Q3 2008 version.
As for the problem - I think that you are experiencing some CSS conflict (as my colleague mentioned earlier). Perhaps you could send us the master page of your SharePoint site as well as any custom site CSS you may be using. To do so you need to open a support ticket.
Regards,
Albert
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
If this is an option for you (not upgrading) you ca use the Q3 2008 version.
As for the problem - I think that you are experiencing some CSS conflict (as my colleague mentioned earlier). Perhaps you could send us the master page of your SharePoint site as well as any custom site CSS you may be using. To do so you need to open a support ticket.
Regards,
Albert
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
0
Amanda
Top achievements
Rank 1
answered on 01 Apr 2009, 02:21 PM
Hi Albert,
I just uploaded my masterpage in the support ticket I opened.
http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=200903
not sure if you can follow that link, the ticket number is: 200903
Amanda
I just uploaded my masterpage in the support ticket I opened.
http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=200903
not sure if you can follow that link, the ticket number is: 200903
Amanda
0
Amanda
Top achievements
Rank 1
answered on 03 Apr 2009, 03:07 PM
For anyone else having the same issues, here are the fixes that helped me:
- Appointments rendering on top of each other: set enableembeddedstylesheets to "true"
- RadScheduler grid lines not aligned properly: add the following to your stylesheet/default.aspx
- Appointments rendering on top of each other: set enableembeddedstylesheets to "true"
- RadScheduler grid lines not aligned properly: add the following to your stylesheet/default.aspx
| * html .RadScheduler .rsContent .rsVerticalHeaderTable tr.rsAlt div |
| { |
| height: 25px; |
| } |
- RadWindow not opening with an Ajaxed control: make sure you register your OpenWindow(); script in a script block on your user control by using ScriptBlock or RadScriptBlock (if you're using RadAjaxManager).