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

No background on advanced template after upgrading to Q3

5 Answers 97 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Leif
Top achievements
Rank 1
Leif asked on 10 Nov 2010, 10:14 PM
After switching to Q3 dlls my advanced template modal dialog has no background. Looking at it in Chrome there seems to be another style overriding the original one but since this is all coming from axd not sure how to correct it. If I switch back to Q2 dll the dialog renders as expected. Screenshots attached.

5 Answers, 1 is accepted

Sort by
0
Kamen Bundev
Telerik team
answered on 11 Nov 2010, 09:22 AM
Hello Leif,

In Q3 2010 we changed the visual appearance of the RadScheduler advanced form you only need to add four <div> elements in your template and a class in the main container, something like this:

<div class="rsAdvancedEdit rsAdvancedModal" style="position: relative">
    ..........
    <div class="rsModalBgTopLeft"></div>
    <div class="rsModalBgTopRight"></div>
    <div class="rsModalBgBottomLeft"></div>
    <div class="rsModalBgBottomRight"></div>
</div>

Let me know if this fixes it. We will prepare a sticky thread about this potential issue with the advanced template. Thank you for reminding us, I'm updating your Telerik points for the find.

Sincerely yours,
Kamen Bundev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Josh
Top achievements
Rank 1
answered on 17 Nov 2010, 04:56 PM
Hi Kamen,

I am experiencing the exact same problem after upgrading to Q3. I applied the fix you provided and it almost works (see the screenshot). I also noticed that the reminder popup is displaying a similar issue in IE7. This can also be seen in the Scheduler Reminder Demo.

Josh

Edit: Placing the four corner divs at the top of the main container div (instead of the bottom as in the demo) solved the issue for me. Just the (small) reminder problem now.
0
Kamen Bundev
Telerik team
answered on 19 Nov 2010, 10:46 AM
Hello Josh,

Thank you Josh for the template problem solution, I'm updating your Telerik points for that, I would also update the sticky thread. As for the reminder - I've already fixed it, mostly with CSS. If you don't mind the drag cue to be slightly higher than the actual form, this CSS should fix the rest:

.RadScheduler .ReminderDialog
{
    padding: 0 7px;
}
div.ReminderDialog .rsRemTitleBar
{
    margin-top: 7px;
}
div.ReminderDialog .rsRemSnoozePanel
{
    bottom: 22px;
}


If you prefer pixel perfect, just get the latest internal build or wait for the next service pack.

Regards,
Kamen Bundev
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
Jonathan
Top achievements
Rank 1
answered on 29 Dec 2010, 05:16 AM
Hi Kamen,

this does not work in advance form.

.RadScheduler .ReminderDialog
{
    padding: 0 7px;
}
div.ReminderDialog .rsRemTitleBar
{
    margin-top: 7px;
}
div.ReminderDialog .rsRemSnoozePanel
{
    bottom: 22px;
}


this only solve partial of problem.

<div class="rsAdvancedEdit rsAdvancedModal" style="position: relative">
    ..........
    <div class="rsModalBgTopLeft"></div>
    <div class="rsModalBgTopRight"></div>
    <div class="rsModalBgBottomLeft"></div>
    <div class="rsModalBgBottomRight"></div>
</div>


anything else I can do to solve the problem.
0
Kamen Bundev
Telerik team
answered on 29 Dec 2010, 07:47 PM
Hi Leif,

We discovered that this bug in IE7 is triggered only if those four DIV elements are at the end of the advanced form. Try moving them to the beginning, like outlined in the revised sticky thread here:
http://www.telerik.com/community/forums/aspnet-ajax/scheduler/known-issues-and-breaking-changes-radscheduler.aspx

and let me know of the result. Thank you in advance and sorry for the inconvenience.

Best wishes,
Kamen Bundev
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Scheduler
Asked by
Leif
Top achievements
Rank 1
Answers by
Kamen Bundev
Telerik team
Josh
Top achievements
Rank 1
Jonathan
Top achievements
Rank 1
Share this question
or