Questions tagged [maskededitextender]
56 questions
0
votes
1 answer
MaskedEditExtender number only, remove trailing zeros?
I have the following ASP.NET code -
When I type in "1" and tab out,…

tempid
- 7,838
- 28
- 71
- 101
0
votes
1 answer
How to Create Mask for MaskedEditExtender for Special Characters?
Suppose I want to allow the user to enter numbers, letters, and some special characters like *, $.
Plus limit to 3 characters.
How do I create a Mask for the AjaxControlToolKit MaskedEditExtender to allow only those characters?
I thought the mask…

CoolBreeze
- 381
- 4
- 14
0
votes
1 answer
Numeric MaskedEditExtender issue onfocus
I'm using latest toolkit (v18) and I have a strange behaviour when textbox receive focus. This is my markup:

Gabriele Cozzolino
- 128
- 1
- 19
0
votes
1 answer
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 validation client or server side.... it allows me to input…

Element
- 3,981
- 7
- 42
- 51
0
votes
1 answer
Referencing AJAX MaskedEditExtender in code behind
Found this code to dynamically create an AJAX MaskedEdit Textbox...
Dim txt As New TextBox()
txt.ID = "txt_name"
Panel1.Controls.Add(txt)
Dim mee As New MaskedEditExtender()
mee.Mask = "999-999-9999"
mee.MaskType =…

Chuckv
- 33
- 7
0
votes
1 answer
ajaxToolkit:MaskedEditExtender + Delete and Backspace not working for Ie11 but working ie11 compatible mode
I know lots of people asked this question but that is related to chrome. In my case, it's not working in IE11 also. ajaxToolkit:MaskedEditExtender is being used in my project for TextBoxes. In Ie11 compatible mode, the backspace and delete keys are…

Lalit_Test
- 113
- 8
0
votes
1 answer
AjaxControlTookit Masked Edit
I'm trying to create an textbox with a date input mask, such as "dd/mm/yyyy".
The mask should be displayed before the textbox gains focus and when the user enters the date, the mask should still be displayed but be automatic overwritten with the…

Karsten
- 8,015
- 8
- 48
- 83
0
votes
1 answer
AJAXControlToolkit MaskedEditExtender behavior
I am referencing the latest AJAXControlToolkit in my ASP.Net 4.0.xxx WebForm application. I am using the extender to format a phone number field as follows. If the field is left empty then I don't need any mask showing up. But if the phone number is…

Aamir
- 791
- 3
- 15
- 28
0
votes
0 answers
Only accepting upper-case and integers in a MaskedEditExtender
I can't figure out why this isn't working:

Johnny Bones
- 8,786
- 7
- 52
- 117
0
votes
1 answer
How do you use MaskedEditExtender for both letters and numbers?
I've got the following line of code:
The problem is, it only…

Johnny Bones
- 8,786
- 7
- 52
- 117
0
votes
1 answer
MaskEditExtender Ajax toolkit- not able to copy paste IE 11
I have two date textboxes in my ASP.Net application and these textboxes are using MaskEditExtender so that only date can be entered in them. These textboxes are actually from and to textboxes to enter a date range.
The issue is that in IE 11 the…

Neha Aggarwal
- 11
- 5
0
votes
1 answer
Thousand separator with MaskedEditExtender from the ASP.NET AJAX Control Toolkit
I need to format some inputs in an Textbox and I've tried to do so with the MaskedEditExtender. I don't know what mask I have to use to get what I want - maybe somebody knows.
The entered values are only numeric values with amounts between 100 and…

raven_977
- 475
- 2
- 8
- 25
0
votes
2 answers
0
votes
1 answer
Masked Edit extender inside a Repeater
How can i dynamically create a textBox and a Masked Edit extender inside a Panel.
My code is something like this:
In the ASPX page:

Viswa
- 1
- 3
0
votes
1 answer
ASP.net, Ajax, JavaScript help
I need help in how to set webform control proprieties in asp.net and ajax control using javascript.
I have asp page that has checkBox, TextBox, MaskedEditExtender, and RegularExpressionValidator.
I set the mask for MaskedEditExtender as …

Eyla
- 5,751
- 20
- 71
- 116