Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6475549
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:43:03+00:00 2026-05-25T06:43:03+00:00

i am using asp.net-mvc3 helpers and the jquery validation plugin (what comes out of

  • 0

i am using asp.net-mvc3 helpers and the jquery validation plugin (what comes out of the box when you use the templates (Create, Edit, etc . .) and i have a field called MiniPrice that is a dataType decimal?

so it validates on the client side that i enter a number in the textbox.

if i enter 1.25 it works fine. If i enter 0.75 it works fine, but if i enter .75 it give this validation error:

enter image description here

why does the jquery unobtrusive validation think .75 isn’t a valid number?

I found this bug that was filed years ago on the jquery core site and it was closed as not a jquery core issue but rather a plugin issue.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T06:43:04+00:00Added an answer on May 25, 2026 at 6:43 am

    That appears to be how the validator behaves. I’d open an issue with jQuery to see if they can (or want) resolve it.

    In the mean time, you can make your own validator method like so that it behaves as you would expect:

    $.validator.addMethod('myValidateNumber', function (value) { 
        return /^(\d\.|\.)?\d+$/.test(value); 
    }, 'Please enter a valid number');
    

    This regex appears to do what you desire – there is likely a better way to write it as well. I am no regex master, but this should suffice.

    Then just use myValidateNumber in the class of whatever you are validating. You can read more about extending jQuery validation here.

    EDIT: To wire this in to MVC3 – take a look at this StackOverflow post: Perform client side validation for custom attribute.

    Essentially what we are doing is creating our own validation for this, and you can apply your own attribute to the model.

    EDIT 2: It appears that if you use validator.addMethod('number'..., it will change the default behavior of the numeric validation. This means you shouldn’t have to change your MVC Model at all. So basically, adding this to your page load:

    $.validator.addMethod('number', function (value) { 
        return /^(\d\.|\.)?\d+$/.test(value); 
    }, 'Please enter a valid number');
    

    Should resolve the problem.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using jQuery's datepicker plugin in .NET ASP MVC3 intranet application. User that use
I am using asp.net mvc3 razor engine and trying to use the MVCSiteMap provider
I'm using asp.net mvc 3 with jquery unobtrusive validation. I recently changed from standard
Using ASP.net MVC3 with C# I want to create a partial view that uses
Using asp.net MVC3, I have a partial view which requires remote validation. As I
I'm developing a web service using ASP.NET MVC3. One of the methods of the
I am going to build my application using asp.net mvc3 and nhibernate 3.2. I
In ASP.NET MVC3, when a view model is passed into a view using return
Assume that: An ASP.NET MVC3 Page (using visual studio debug server) calls a WCF
I am creating an ASP.NET MVC3 application using NHIBERNATE. I have a base class

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.