Click here to Skip to main content
15,887,477 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear programming community,

I am trying to populate the dropdown list by calling a method from the controller.
The reason why i am doing this is because i want to pass it an id and therefore ill be getting a different list for each record.

View

C#
grid.Column(header: "Wards", format: @<text>@Html.DropDownList(@Url.Action("getDoctorsWards", "Doctor", new { id = 1 }), "Ward_id")</text>)




Controller

C#
public ViewResult getDoctorsWards(int id)
        {
            var myModel = db.Wards.Where(a => a.Doctor.Doctor_id == id).ToList();
            return View(myModel);
        }



Any comments or suggestions are welcome.
Posted
Updated 8-Mar-13 0:16am
v5

1 solution

You have to return the result in JSON format from controller. Then at the client side use JQuery to populate the values in the dropdown list using the JSON resultset.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900