Ajax Control Toolkit 日期选择器 - 是否可以不必选择日期?
因此,我可以在日历扩展器上设置日期格式,使其仅显示月份,但您仍然必须选择“年”,然后选择“月”,然后选择“日”。
我想只选择年份,然后选择月份。
<cc2:CalendarExtender ID="DateOfReleaseCalendarExtender" runat="server"
TargetControlID="DateOfReleaseTextBox"
Format="MMMM yyyy" />
So I can set the date format on the Calendar Extender to it displays just the month, but you would still have to select the Year, then the Month, then the Day.
I would like to just select the Year, then the Month.
<cc2:CalendarExtender ID="DateOfReleaseCalendarExtender" runat="server"
TargetControlID="DateOfReleaseTextBox"
Format="MMMM yyyy" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不是内置功能,不是。 您必须自己扩展它。 我可能会关注 Javascript 事件——无论你认为哪一个在你的情况下有意义。
That is not a built-in feature, no. You'll have to extend it yourself. I would probably hook into the Javascript events--whichever one you think makes sense in your situation.
这需要修补 AjaxControlToolkit 程序集的 CalendarExtender 部分。
我发现一篇博客文章解释了如何执行与您尝试执行的操作非常相似的操作:
修补 CalendarExtender 控件
This requires patching the CalendarExtender part of the AjaxControlToolkit assembly.
I found a blog post that explains how to do something very similar to what you are trying to do:
Patching the CalendarExtender Control