Why is my CalendarExtender getting overlapped when rendered?

后端 未结 6 1118
情歌与酒
情歌与酒 2021-02-14 02:21

I\'m working on a .NET web application and I\'m using a CalendarExtender control within it to have the user specify a date. For some reason, when I click the icon to display the

6条回答
  •  感情败类
    2021-02-14 02:48

    The only way i have found to resolve the issue in IE7 was to add some extra CSS to the page i was having problems with. No amount of z-indexing or div wrapping and re-styling was having an effect.

    The following changes the controls stacking context.

    .ajax__calendar_container
    {
        position:static;
    }
    

    This does result in the calendar popup appearing vertically above the extender control instead of vertically below as normal. For me that was acceptable.

提交回复
热议问题