Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
3answers
2k views

Conflict between jQuery Validate and Masked Input

I've got a form that's using both jQuery Validate and Masked Input for phone number and US zip code fields. For example, for a US zip code, Masked Input allows only numbers to be entered, and forces ...
3
votes
5answers
5k views

jQuery plugin for formatting inputs

I want to accept values in any of the following format: -$5 -$5.00 $5 $5.00 Is it possible to do that using Masked Input Plugin? If not, what plug-in am I looking for? How do I indicate a ...
2
votes
1answer
133 views

jquery masked input on loaded content

So I have a joomla! page that is partly generated by functions based on the user. So parts of the forms that I need to use the 'masked input plug-in' on are loaded via functions on page load. The ...
2
votes
1answer
155 views

Input mask visibility

I'm currently using the masked input plugin from http://digitalbush.com/projects/masked-input-plugin/ on my form. So far it seems to work but I want to modify it so that the mask is displayed at all ...
2
votes
3answers
214 views

Input number list with jQuery

I'm making some work, but there are 3 issues still I have. I tried many ways, but nothing useless. If you know jQuery enough, please suggest me some changes. First please view below URL: ...
1
vote
2answers
319 views

Masked input for currency jQuery

In my web application I have an input field called "Budget" where users enter the proposed budget for a project. I need to create a masked input to automatically bring the entered amount to the ...
1
vote
1answer
1k views

Validating integer Input using a Mask (Asp .NET MVC 3.0)

My Model : public virtual int? NumberTest { get; set; } My View @Html.LabelFor(model => model.NumberTest) <br /> @Html.TextBoxFor(model => model.NumberTest) I'm using Masked Input ...
1
vote
3answers
344 views

How to remove literals from input mask after form submit?

I'm using Josh Bush's MaskedInput plugin for jQuery in an ASP.NET 3.5 Webform app. How to get rid from the literals in the code-behind file after form submit? E.g: a phone input with the mask ...
0
votes
1answer
43 views

Specify date format in mask when using an input mask?

I've been using the jquery masked input plugin to apply a date mask to text inputs. This works pretty well, but I want the displayed mask to also show the format. That is, instead of the mask being ...
0
votes
0answers
71 views

Strange behaviour in jQuery maskedinput

I am masking form input elements like this for (var i=0;i<dla.length;i++){ $(dla[i]).mask("99:99",{placeholder: " "}); } and i generate html <td scope="col" ...
0
votes
1answer
196 views

Apply a plugin's method to dynamically created elements?

I'm using the jquery.maskedinput plugin to create a mask for a phone number field: jQuery('input[type="tel"]').mask("(999) 999-9999"); Using a modification of Ryan Bates's nested form, I have a ...
0
votes
1answer
179 views

using jquery masked input for updating values

i have a problem with masked input plugin. in my header i have $("#isNo").mask("(999) 999-9999"); and my input field is; <h:inputText value="#{bBean.PhoneNr}" id="isNo" /> so, when ...
0
votes
1answer
173 views

jQuery Maskedinput plugin: Completed event after pasting not work

I have trouble with using jQuery Masked Input Plugin text typing successfully works, but if I paste text into masked textbox - I cannot catching Completed event. Example from plugin site: <script ...
0
votes
2answers
218 views

How do I strip any characters out of the telephone field

How do I strip any characters that are not a number out of the telephone field, including spaces. I need to have a string of numbers 0-9. No () or spaces. i have a maskedinput for telephone (999) ...
0
votes
1answer
632 views

masked input phone number clears textbox when i submit the page

i have two issues with that: 1) i have phone format something like this: $('#phone').mask('(999) 999-9999'); so when i submit the form i want to validate if the user has entered all 10 numbers so ...
0
votes
0answers
302 views

Masked Input plugin acts strange on mobile device?

I am using the masked input plugin from the following website. Frop a laptop, the mask works fine for a MAC Address, for example, as I enter e1, it skips over the colon and I continue entering, ...
0
votes
1answer
254 views

jquerytools & $.maskedinput conflict

I need some help about a wierd problem. I'm using jQueryTools and i'm very hapy with that but i think maskedinput plug in's $.mask() method conficts with jQueryTools's .mask() property. When I used ...
0
votes
1answer
207 views

How can I clone an input that uses the Masked Input plugin?

I'm using jQuery's Masked Input plugin to help users enter valid input for fields like dates, zip codes, phone numbers, etc. (I'm also using Validate to ensure the form can't be submitted unless ...
0
votes
1answer
392 views

jQuery masked input plugin not working on smartphone

I have been using the masked input plugin for jQuery for a long time. http://digitalbush.com/projects/masked-input-plugin/ I never had any issues with the plugin until yesterday I got a support ...