我将一个CalendarExtender添加到页面,使用默认样式.当我点击日历按钮来触发日历弹出时,日历显示正常.但是,当我向下滚动并再次单击按钮时,日历的位置不在于它应该在哪里,如下所示.
alt text http://ktrauberman.wordpress.com/files/2009/06/calendarproblem.gif
为什么会这样发生,我该如何解决?
编辑:有关该页面的实现.
CalendarExtender和TextBox是添加到SharePoint 2007页面的WebPart的一部分.我正在创建扩展器:
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);