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

An issue with DatePicker control

1 Answer 49 Views
Date/Time Pickers
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Todor
Top achievements
Rank 1
Todor asked on 16 Nov 2010, 03:06 PM
Hi,

DatePicker control creates a <div> of class "t-animation-container" below all html (at the end of the body) which is visible, i.e. display style is not none. This unnecessary extends the bottom edge of the body with about 205px. You can see this in your DatePicker control demo.

I resolved for me this problem by styling 't-animation-container', adding:

.t-animation-container
{
    display: none;
}

Is that correct, i.e. could not led to other side effects, or it is a bug that will be fixed.

Best regards
Todor Mihailov

1 Answer, 1 is accepted

Sort by
0
Alex Gyoshev
Telerik team
answered on 17 Nov 2010, 02:08 PM
Hi Todor,

Thank you for reporting this. It is indeed a bug, which we just fixed. Upcoming releases will contain the fix; until then, you can fix it in your source by adding the following to the _createSharedCalendar method in telerik.datepicker.js:

    $t.fx._wrap(sharedCalendar).css('display', 'none');

Your Telerik points have been updated for submitting this bug report.

Regards,
Alex Gyoshev
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
Tags
Date/Time Pickers
Asked by
Todor
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Share this question
or