Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to update a table within my View whenever the user selects an option within a DropDownListFor control.

I am using Ajax.BeginForm:

@using (Ajax.BeginForm("SortListing", "Listing", new AjaxOptions { HttpMethod = "POST", UpdateTargetId = "listingTable", InsertionMode = InsertionMode.Replace }))
{
    @Html.DropDownListFor(m => m.SelectedCategoryGuid, Model.Categories, "Select a Category", new { id = Model.SelectedCategoryGuid})

    <input type="submit" value="Update Listings"/>
}

My Action Method:

[HttpPost]
public ActionResult SortListing(string id)
{
  //DoStuff
}

By inspecting the html page, I get:

<form action="/Listing/SortListing" data-ajax="true" data-ajax-method="POST" data-ajax-mode="replace" data-ajax-update="#listingTable" id="form0" method="post"><select data-val="true" data-val-required="The SelectedCategoryGuid field is required." id="00000000-0000-0000-0000-000000000000" name="SelectedCategoryGuid"><option value="">Select a Category</option>
<option value="7aa6919c-6451-4bc3-86a8-c5998a941904">option 1</option>
<option value="89eca9dc-6c58-49a9-9ed7-d0b55f81c6f0">option 2</option>
<option value="5810150d-4b9b-43a5-b3da-9b3bac8c9b48">option 3</option>
<option value="80776c90-1178-4805-8209-2b0ab43dbf8e">option 4</option>
</select>    <input type="submit" value="Update Listings"/>
</form>

The problem I am getting is that the "id" parameter is null. So, within my DropDownListFor, the code: new { id = Model.SelectedCategoryGuid} is obviously not sending the Guid over because the html page source shows that the guid is empty. There ARE guids however at each option. How do I then send THAT specific guid over?

Any ideas please?

share|improve this question
1  
Do you set the guid in the code that fills your model, Is it being filled? just before you send the model to the view, is it nog equal to null? – middelpat Oct 8 '12 at 11:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.