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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T03:21:05+00:00 2026-06-04T03:21:05+00:00

I have not been using MVC3 for that long and think this is a

  • 0

I have not been using MVC3 for that long and think this is a flaw in my knowledge than a real issue.

I have an object that has a few basic properties and then a collection of inner objects, (simplified version):

public class myClass
{
    public string Name { get; set; }
    public string Location { get; set; }
    public List<myOtherClass> Children { get; set; }
 }

public class myOtherClass
{
    public string Name { get; set; }
    public int Age { get; set; }
}

I have a view that is strongly typed to the “myClass” object. I use the @html.editorfor for the name and location then a foreach for the children objects. in the foreach I again use editorfor’s for each of their properties.

On postback(httppost action) the myClass name and location are filled out but the children list is empty.

I am not sure how I should craft the view to ensure it populates all the child elements.

I tried both:

[httppost]
public actionresult myaction(myClass myclass)
{
}

and:

[httppost]
public actionresult myaction()
{
    myClass myclass = new myClass();
    TryUpdateModel(myclass);
}
  • 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-06-04T03:21:07+00:00Added an answer on June 4, 2026 at 3:21 am

    You should not iterate over children manually, you should define editor template for myOtherClass and then just let framework generate editors for all items collection.

    Create EditorTemplate for myOtherClass at ~/Views/Shared/EditorTemplates/myOtherClass.cshtml

    @model myOterClass
    @Html.EditorFor(model => model.Name)
    @Html.EditorFor(model => model.Age)
    

    Then in parent view

    @Html.EditorFor(model => model.Children)
    

    This will internally call your editor template for all items in collection, and generate correct input names for model binding.

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

Sidebar

Related Questions

How to write this in C#.NET, I have not been encountered using the ^
I have been using this as a reference, but not able to accomplish exactly
So this is something that I have not been able to find any documentation
Following the standard instruction for using AES algorithm, I have not been able to
I have been using emacs for a while but not so familiar with lisp
I have not been able to find any definitive answers to this question: Can
I am new to RIA and have not been actively involved with this technology
Does gettext have a way to warn me about strings that have not been
I'm using MVC3 with EF (version 4, but not sure if 4.0,4.1,etc). I've been
I'm using MVC3 with unobtrusive validation. I have a field that the user is

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.