Tagged Questions

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
1answer
714 views

How to bind extenders to controls on clientside

I have some dynamically created inputs which are not server-side controls. I want to relate them to some CalendarExtender and MaskedEditExtender on the clientside. Is there a way to do that?
1
vote
2answers
2k views

How to create a MaskedEditExtender on the fly?

I want to create a number of masked edit extenders from codebehind. Something like: private MaskedEditExtender m_maskedEditExtender; protected override void OnLoad(EventArgs e) { base.OnLoad(e); ...
0
votes
1answer
74 views

Any ideas why this MaskedEditValidator isn't behaving properly?

I am trying get the following to valid to dd-MMM-yyyy. The calendar extender passes this format to the text box but is never shown in the text box. The validation message appears for a fraction of a ...
0
votes
0answers
227 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
4k views

ASP.net Toolkit Masked Edit Control With 99:99 Time Mask

I am trying to use the asp.net ajax toolkit masked edit control to take an hour/minute input with the mask 99:99 and the masktype="time" property set. However it doesn't seem to do any time ...