Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm struggling with this one and hoped I could get some help. It seems I can't find a simply way to use MaskedEditExtender to handle a month year only input mm/yyyy. It causes a javascript error. I was hoping not to need to handle a custom mask.

The CalendarExtender supports this format without issue, however the MaskedEditExtender does not.

All assistance appreciated.

<asp:TextBox  ID="dt"  CssClass="inputCriteria" width="85px" runat="server" />
<asp:Image ID="idCal" CssClass="iconCal" ImageUrl="images/icon_cal.jpg" AlternateText="Choose Date" runat="server" />
<asp:CalendarExtender ID="CalExt1" CssClass="cal" TargetControlID="dt" runat="server" Format="MM/yyyy" PopupButtonID="idCal" PopupPosition="TopLeft" />
<asp:MaskedEditExtender ID="dtEdit" runat="server" TargetControlID="dt" Mask="99/9999" MaskType="Date" AutoComplete="true" />




Update: I've been playing around with this and have it in a working situation, but I'm not overly pleased by it. By changing mask type and not having the mast clear on focus, it now keeps the / when the input is submitted and seems to solve the issue.

<asp:MaskedEditExtender ID="dtEdit" runat="server" TargetControlID="dt" Mask="99/9999" MaskType="None" ClearMaskOnLostFocus="false" AutoComplete="true" />

I welcome better solutions.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.