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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:47:12+00:00 2026-05-23T00:47:12+00:00

I have a View with a ViewModel. It has a form that posts back

  • 0

I have a View with a ViewModel.

It has a form that posts back a completely different Model.

I am try to get Client Validation working.

I have

<script type="text/javascript" src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")"></script>
    <script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.min.js")"></script>
    <script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")"></script>

<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />

My view looks like so:

<form method="post" action="@Url.Action("Checkout")">
    @Html.ValidationSummary()
    <table>
        <tr>
            <td>Forename:</td>
            <td>@Html.TextBox("Forename")  @Html.ValidationMessage("Forename","*")</td>
        </tr>
</table>
</form>

I get the impression that Client Validation creates HTML5 attributes based on the ViewModel on the inputs but I dont have that ViewModel for it to create data attributes so how can client validation work?

  • 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-23T00:47:13+00:00Added an answer on May 23, 2026 at 12:47 am

    The way client validation works out of the box is that it uses the ModelMetadata of the view model passed to the view to emit HTML5 data-* attributes on the input fields based on Data Annotation attributes you have used on your view model. If you are using a completely different view model as action argument in your POST action this obviously won’t work as server side validation will rely upon the view model in the POST action while client validation will rely upon the view model passed to the view rendering this form.

    The only solution I can see to this problem is to forget about automatic client validation and define the jquery.validate rules manually so that they are coherent with the view model you are using in the POST action on the server. So you can basically forget about the data-* attributes, exclude the jquery.validate.unobtrusive.min.js script from your page and get into coding:

    $(function() {
        $('form').vaildate({
            rules: {
                ...
            },
            messages: {
                ...
            }
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

if i have created a view model and have a partial form that is
I have an user view model that has the following properties: public User user;
I have a DatePicker working on a View which also has a ViewModel associated
I have senario in which one view and view has binding with multiple ViewModel.
In my view model if have a: List<Car> where car has an Id and
In my WPF application I have a View that is given a ViewModel, and
I have a partial view that has something like this <%= Html.DropDownListFor(m => m.SelectedProductName,
I'm experimenting with the unobtrusive client validation and have been struggling to get it
I have a view model with a from that includes a set of checkboxes.
I have a View that has the ability to both create and edit an

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.