如何让CalendarExtender在下拉菜单中显示

如何让CalendarExtender在下拉菜单中显示

本文介绍了如何让CalendarExtender在下拉菜单中显示?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有IE6错误的修复程序,该错误导致日历弹出窗口显示在dropdownlist后面?

其实我正在使用javascript日历,我正在输入控件文本框中使用日历,但是在IE中,日历显示在下拉列表后面,但是我需要在下拉列表上方显示.我该怎么办?


< script src ="js/CalendarPopup.js" type ="text/javascript"></script>


< input type ="text" id ="dateofbirth" name ="dateofbirth" maxlength ="25" runat ="server"
önclick="javascript:NewCssCal(''ctl00_MainContentPlaceHolder_dateofbirth'',``ddMMyyyyy))"/>

Is there a fix for the IE6 bug that causes the calendar popup to display behind dropdownlist ?

Actually am using the javascript calender ,i am using the calendar in input control textbox,but in IE the calendar display behind the dropdownlist , but i need to display above the dropdown.How can i do?


<script src="js/CalendarPopup.js" type="text/javascript"></script>


<input type="text" id="dateofbirth" name="dateofbirth" maxlength="25" runat="server"
önclick="javascript:NewCssCal(''ctl00_MainContentPlaceHolder_dateofbirth'',''ddMMyyyy'')" />

推荐答案


这篇关于如何让CalendarExtender在下拉菜单中显示?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 10:07