Why is my CalendarExtender getting overlapped when rendered?

后端 未结 6 1127
情歌与酒
情歌与酒 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:46

    If those answers does not work properly it might be a problem with hiding overflow. This can be solved using following css:

    .ajax__scroll_none {
        overflow: visible !important;
        z-index: 10000 !important;
    }
    

提交回复
热议问题