Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question

2 Answers

up vote 4 down vote accepted

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">
share|improve this answer
The page did not have a DOCTYPE. I added the DOCTYPE from above and this fixed the issue. Thanks! – Kyle Trauberman Jun 8 '09 at 17:27

I came across the same problem today.

The solution, while somewhat difficult to find on the web, is rather trivial

Create a new Div with its position set to relative (style="position:relative;")

and place your textbox and calendarExtender inside the Div.

That fixed the problem i was facing, i hope it does the trick for you too

share|improve this answer
3  
+1: This worked for me. I was having the correct DOCTYPE and I still wondered what could be the problem. Hope that others will explore your answer is the one accepted won't work for them. For me this solution worked on multiple browsers: Chrome, Mozilla, Opera, IE (both 8 and 9). – Coral Doe Aug 21 '12 at 13:59
I already had a doctype. And similar styling worked for me. Here is the reference : languagelassi.blogspot.in/2012/08/blog-post.html – pearl's Mar 20 at 11:23

protected by Bill the Lizard Jan 27 '11 at 19:48

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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