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

  • Home
  • SEARCH
  • 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 ASP.NET MVC Preview 4 and would like to know how to use
I'm using ASP.NET, with session state stored out of process in SQL Server. When
Is there any documentation on how to use the Razor view engine using ASP.NET
What's the best option for generating links using helpers in ASP.NET MVC 3? As
I am using: Asp.net MVC3 Ninject Repository pattern with Entity Framework 4.0 On an
Using ASP.NET MVC there are situations (such as form submission) that may require a
Using asp.net, I need to generate a snapshot of an youtube video. I have
Using ASP.net 2.0, how do I present the information to the user similar to
Using ASP.net, how do you write ANSI characters to a text file? I need
Using asp.net MVC I'd like to do this inside a view: <%= Html.TextBox(textbox1, null,

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.