vote up 1 vote down star

I am adding a CalendarExtender to a page, using the default styles. When I click the calendar button to trigger the calendar popup, the calendar displays normally. However, when I scroll down and click the button again, the calendar's position is not where it should be, as seen below.

alt text

Why is this occuring and how do I fix it?

EDIT: A bit about the implementation of this page.

The CalendarExtender and TextBox are part of a WebPart added to a SharePoint 2007 Page. I am creating the extender like so:

textBox = new TextBox() { ID = "textBox" };
Controls.Add(textBox);

calendar = new CalendarExtender()
    {
        ID = "ceStartDate",
        TargetControlID = textBox.ID,
        PopupPosition = CalendarPosition.Right,
        PopupButtonID = image.ID
    };
Controls.Add(calendar);
flag

2 Answers

vote up 1 vote down check

What is the DOCTYPE of the page? Also, what browser is it? I have seen this issue on pages with invalid/old DOCTYPEs with IE6-7 in Quirks mode.

In quirks mode, javascript values(like scroll position), can be off, resulting in a bad render. You should ensure you have a valid DOCTYPE that forces IE into standards mode like..

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
link|flag
The page did not have a DOCTYPE. I added the DOCTYPE from above and this fixed the issue. Thanks! – Kyle Trauberman Jun 8 at 17:27
vote up 0 vote down

Hi, I'm using VS2005 and have a similar problem but my calendar is inside a modalpop.when click without scrolling it works perfect. Now if I scroll down and click again, calendar is positioned wrong. got a calendar in another page that also scrolls but with div scroll and this problem is not present. That's why I think it's related with modalpop. Trieg scrolling with div and asp:panel (both overflow:auto) and the same behavoir. Thanks.-

alt text

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.