Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got an entity class that contains a Person and Address.

public class Person
{
        public int Id { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }

        public List<Address> Addresses { get; set; }
}

public class Address
{
   public string ZipCode { get; set; }
   public string City { get; set; }
   public string State { get; set; }
   public string Country { get; set; }
}

In my view i display a few checkboxes.

@model DataContext.Models.Persons

@{
    ViewBag.Title = "Person list";
}

@using (Html.BeginForm("Update", "Test", FormMethod.Post))
{

    <div id="personContainer">
        @foreach(var t in Model.Person)
        {
            <input type="checkbox" value="@t.ID" name="@t.FirstName ">@t.FirstName <br />
        }
    </div>
    <p>
        <input type="submit" id="save">
    </p> 
}

My controller looks like this:

[HttpPost]
public JsonResult Update(Person p)
{

   return Json( new { redirectTo = Url.Action("Index") });
}

The data i want to post must be strongly typed. How can i post back the data (in this case all checkboxes) to the 'update' controller with JSON?

share|improve this question
Is there any one that could help me out with this problem please? – Yustme Dec 2 '12 at 9:56

1 Answer

Setup a jquery method to run on the form submit to send the serialised form to the controller in the Begin Form

$('formSelector').submit(function () {
    if ($(this).valid()) {
        $.ajax({
            url: this.action,
            type: this.method,
            data: $(this).serialize(),
            success: function (result) {
                if (result.Success == true) {

                }
                else {
                    $('#Error').html(result.Html);
                }
            }
        });
    }
    return false;
});
share|improve this answer
What is formSelector? I tried your code out, but the data is null at post when it comes in the controller. Am i missing something? – Yustme Dec 1 '12 at 21:00
@Yustme It will be the path to your form so if your form has a ID of say "person" you would have $('#person').submit. If this is the only form on the page you can select the submit button with $('form').submit. I'm assuming you are aware of jQuery syntax.? – Oli Dec 1 '12 at 21:06
No deep knowledge, just some basics. But how do you submit all the checkboxes with their id's for later reference? – Yustme Dec 1 '12 at 21:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.