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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:42:27+00:00 2026-05-20T09:42:27+00:00

I have an object MainObject with a list of objects, SubObjects, among other things.

  • 0

I have an object MainObject with a list of objects, SubObjects, among other things. I am trying to have the user click a link on the View to add a new SubObject to the page. However, I am unable to pass the MainObject I am working with into the Action method. The MainObject I currently receive is empty, with all its values set to null. How do I send my controller action the MainObject that was used to render the View originally?

The relevant section of the view looks like this:

    <div class="editor-list" id="subObjectsList">
        <%: Html.EditorFor(model => model.SubObjects, "~/Views/MainObject/EditorTemplates/SubObjectsList.ascx")%>
    </div>
     <%: Ajax.ActionLink("Add Ajax subObject", "AddBlanksubObjectToSubObjectsList", new AjaxOptions { UpdateTargetId = "subObjectsList", InsertionMode = InsertionMode.Replace })%>

The relevant function from the controller looks like this:

    public ActionResult AddBlanksubObjectToSubObjectsList(MainObject mainobject)
    {
        mainobject.SubObjects.Add(new SubObject());
        return PartialView("~/Views/MainObject/EditorTemplates/SubObjectsList.acsx", mainobject.SubObjects);
    }
  • 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-20T09:42:28+00:00Added an answer on May 20, 2026 at 9:42 am

    I ended up with the following:

    View:

            <div class="editor-list" id="subObjectsList">
                <%: Html.EditorFor(model => model.SubObjects, "~/Views/MainObject/EditorTemplates/SubObjectsList.ascx")%>
            </div>
            <input type="button" name="addSubObject" value="Add New SubObject" onclick="AddNewSubObject('#SubObjectList')" />
    

    Control:

     public ActionResult GetNewSubObject()
        {
            SubObject subObject= new SubObject();
            return PartialView("~/Views/TestCase/EditorTemplates/SubObject.ascx", subObject);
        }
    

    And, finally, I added this JQuery script:

       function AddNewSubObject(subObjectListDiv) {
            $.get("/TestCase/GetNewSubObject", function (data) {
    
                //there is one fieldset per SubObject already in the list,
                //so this is the index of the new SubObject
                var index = $(subObjectListDiv + " > fieldset").size();
    
                //the returned SubObject prefixes its field namess with "[0]."
                //but MVC expects a prefix like "SubObjects[0]" - 
                //plus the index might not be 0, so need to fix that, too
                data = data.replace(/name="\[0\]/g, 'name="SubObject[' + index + "]");
    
                //now append the new SubObject to the list
                $(subObjectListDiv).append(data);
            });
        }
    

    If someone has a better way to do this than kludging the MVC syntax for nested objects onto a returned View using JQuery, please post it; I’d love to believe that there is a better way to do this. For now, I’m accepting my answer.

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

Sidebar

Related Questions

I have a drop-down list hardcoded in an MVC View User Control page and
I currently have this type of code: private void FillObject(Object MainObject, Foo Arg1, Bar
I get object from hibernate query. Then i have list of fields, whose getters
I have a json object with a few properties in it including a list
Application use NHibernate. I Have object A that contains set of objects B. I
I have object A which in turn has a property of type Object B
I have an object that is mapped to a cookie as a serialized base-64
I have an object graph serialized to xaml. A rough sample of what it
I have an object in a multi-threaded environment that maintains a collection of information,
I have an object of the type System.Drawing.Image and want to make every pixel

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.