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.