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

Buggy DatePicker Button

5 Answers 73 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Developer
Top achievements
Rank 1
Developer asked on 18 Nov 2011, 01:58 AM
Hi.
I am using the RadDatePicker and RadCalendar in a project and I noticed a bug with the datepicker button.

When I press the button in the date picker, and finish making my date selection, the datepicker button shifts down a couple of pixels.

I tried checking the margins and the z-index, but it did not really change the code much.

Here's the the code snippet.
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>    <!--needed for telerik:RadCalendar-->
    <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
        <telerik:RadDatePicker ID="RadDatePicker1" runat="server" Skin="Santrio" EnableEmbeddedSkins="false">
            <Calendar ID="Calendar1" runat="server" EnableKeyboardNavigation="true" />
        </telerik:RadDatePicker>
    </telerik:RadAjaxPanel>


You may notice that I am calling a customized skin called "Santrio", but it is just the default skin, happened to be in CSS.

How do I fix this issue? Thanks!

5 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 22 Nov 2011, 05:24 AM
Hello Michael,

I was unable to reproduce the same at my end. Are you able to reproduce the same in the online demo.
Calendar / DatePicker/First look.

Thanks,
Princy.
0
Kevin
Top achievements
Rank 2
answered on 22 Nov 2011, 02:37 PM
Hello Michael,

I've noticed the same thing with the latest version of the controls when viewed in Chrome.

http://demos.telerik.com/aspnet-ajax/calendar/examples/datepicker/custompopup/defaultcs.aspx

I'm assuming it's some new bug introduced by the latest version of the controls.
0
Galin
Telerik team
answered on 22 Nov 2011, 04:58 PM
Hello,

This issue is already fixed and will be available in the next internal build (which is to be uploaded next week).

In the meantime could you use the following CSS workaround:
@media screen and (-webkit-min-device-pixel-ratio:0)
{
    .rdfd_
    {
        position: absolute;
    }
}

Please excuse us for the inconvenience this might have caused you.

Regards,
Galin
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
0
Developer
Top achievements
Rank 1
answered on 22 Nov 2011, 06:51 PM
Thank you!

some CSS wizardry happened (similar to below) and it's resolved.

Thanks anyways for your inputs!
0
Developer
Top achievements
Rank 1
answered on 22 Nov 2011, 06:51 PM
Thank you!

some CSS wizardry happened (similar to below) and it's resolved.

Thanks anyways for your inputs!
Tags
Calendar
Asked by
Developer
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Kevin
Top achievements
Rank 2
Galin
Telerik team
Developer
Top achievements
Rank 1
Share this question
or