Tagged Questions

6
votes
2answers
218 views

Is it possible to set a mask for MaskedEditExtender for the date format MMM-yyyy that would work in any culture?

The problem I'm having, as the title says, is that I need to use the short month name format with the year for Dates being validated by a MaskedEditExtender from the AjaxControlToolkit. MMM-yyyy for a ...
4
votes
3answers
2k views

AjaxControlToolkit MaskedEditExtender - custom mask appearance

I'm using a MaskedEditExtender to show users what format they should use to enter a date into a textbox. How do I change the mask to be dd/MM/yyyy instead of __/__/____?
3
votes
1answer
233 views

ASP.NET MaskedEditExtender needs to show mm/dd/yyyy when user clicks on textbox

I am using the MaskedEditExtender control for a textbox field that contains Date of Birth. I want the mask to show "mm/dd/yyyy" when the user clicks on the textbox when it is empty. Right now it ...
1
vote
0answers
904 views

how to use MaskedEditExtender for mm/yyyy

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 ...
0
votes
0answers
12 views

Two time boxes with MaskedEditExtender and MaskedEditValidator

I have two time boxes - from and to. For some reason the from box is always cleared while the to can be set as needed. If I switch the two in the code then the last one keeps the value and the first ...
0
votes
0answers
60 views

Unwanted behaviour on an Ajax Tool Kit's MaskedEditExtender with Date Mask

I've textbox in a ASP.Net WebForms page that expects a date. The textbox is extended by a MaskedEditExtender from the Ajax Control ToolKit project. The mask is with the following format: "//__" This ...
0
votes
1answer
108 views

Can I change default for MaskedEditExtender am/pm?

The MaskedEditExtender control that I am using is set up for a MaskType="DateTime" and the AcceptAMPM="true" but I need to know how a user can change the am/pm without having to type in A for AM and P ...
0
votes
0answers
2k views

“Unable to get value of the property 'split': object is null or undefined” error in IE

I am trying to use ASP.NET AJAX Toolkit's MaskedEditExtender Control (with MaskedEditValidator) in my web application. The control works fine in Google Chrome but IE9 throws a "Unable to get value of ...
0
votes
0answers
228 views

ASP.NET MaskedEditValidator shows invalid when first field first displayed

I am using the MaskedEditValidator control for a textbox field that contains Date of Birth. The textbox, MaskedEditExtender, and MaskedEditValidator are all in a panel which has visible=false when ...
0
votes
1answer
1k views

Using a CalendarExtender with a MaskedEditExtender

I'm trying to have a textbox function exactly like the third textbox down on this page: http://www.asp.net/AJAX/AjaxControlToolkit/Samples/MaskedEdit/MaskedEdit.aspx. I'm trying to use a ...
0
votes
2answers
1k views

Check if value of textbox extended with MaskedEditExtender is valid?

Below is my code: <asp:TextBox ID="FromDateTextBox" runat="server" /> <asp:ImageButton ID="FromDateImageButton" runat="server" ImageUrl="~/images/calander.png" /> ...
0
votes
1answer
1k views

MaskedEditExtender, dates and Globalization

I want to use the MaskedEditExtender to mask short dates. The problem is that I want to mask the field depending on the user language settings. This is working for a lot of cases, but for example for ...
0
votes
2answers
435 views

Is it possible to use a Maskeditextender for IP Adress?

I'm using AjaxControlToolKit for an application and I'm using the MaskEditExtender on a TextBox. This TextBox will be use to get something like an IP address (I.E.: 999.999.999.999 OR 999.999.999.*). ...
0
votes
2answers
1k views

Advanced usage of Ajax Control Toolkit MaskedEdit Extender

How can I achieve the following with the Ajax Control Toolkit MaskedEdit extender? Letter + Any number of numeric chararacter such as Z234, Z235, Z24, etc
0
votes
3answers
7k views

Problem with MaskedEdit from Ajax Control Toolkit - different culture

I want to use maskededit to make the user to do the same as in the ajax control toolkit sample for maskededit, but I need to use another format, since dates at my client is displayed as dd-MM-yyyy. I ...