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 6563247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T13:48:26+00:00 2026-05-25T13:48:26+00:00

I have a field for weight in Kgs (type double or use something else??).

  • 0

I have a field for weight in Kgs (type double or use something else??).
In edit view I would like the user to enter numbers to the thousandth place.
In display view I would like the Kgs to appear like 560.250

Trying to learn MVC3 + Razor.
Willing to explore JQuery, use of regular expressions, validators, view templates, view models…

The “magic” of MVC based on conventions takes getting used to. Confused as to which approach to use.

Thank you in advance for your help.

  • 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-25T13:48:27+00:00Added an answer on May 25, 2026 at 1:48 pm

    You could use data annotations on your view model:

    [DisplayFormat(DataFormatString = "{0:#,##0.000#}", ApplyFormatInEditMode = true)]
    public double? Weight { get; set; }
    

    and in your view

    @Html.EditorFor(x => x.Weight)
    

    will properly format the value in the input field.

    Another possibility is to write a custom editor template for the double type (~/Views/Shared/EditorTemplates/double.cshtml):

    @model double?
    @Html.TextBox("", Model.HasValue ? Model.Value.ToString("#,##0.000#") : "")
    

    and then in your view:

    @Html.EditorFor(x => x.Weight)
    

    or if you don’t want to override all templates for all double types in your application you could put this into some custom template location like ~/Views/Shared/EditorTemplates/MyFormattedDouble.cshtml and then in your view:

    @Html.EditorFor(x => x.Weight, "MyFormattedDouble")
    

    Personally I prefer the first approach which uses data annotations to control the format of the double values.

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

Sidebar

Related Questions

I have an EditText field for the user to enter their weight in lbs.
I would like to have a background for a legend field within a fieldset
I have field like a_b_c_d I want as the output a b c_d, this
I would like to execute a function when Simplemodal opens a window, and have
I have two arrays. In first array I have Type and Zone field names.
I have a model containing products. I would like to create a search form
I have field X that contains text with spaces in the end of the
I have one field that I need to sum lets say named items However
I have a field on a table in MS Access, tblMyTable.SomeID, and I want
I have a field in a database that is nearly unique: 98% of the

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.