Click here to Skip to main content
15,881,709 members
Articles / Web Development / ASP.NET

ASP.NET MVC – Binding to Dictionary

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
29 Sep 2011CC (ASA 2.5)1 min read 27.8K   2   4
ASP.NET MVC - Binding to dictionary

Today, I came across a situation where I had to display a list of combo boxes inside a part of a complicated tab based form. The model of the view was a different object than this particular section I was trying to render. I had a different controller action to do the updates.

After Googling, I came across this article from Scott - ASP.NET Wire Format for Model Binding to Arrays, Lists, Collections, Dictionaries which turned out to be very helpful.

While implementing this all I need the binder to return something like a dictionary of int key with int value.

C#
[HttpPost]
public ActionResult EditProjectAccess(int? id, Dictionary<int, int> ProjectAccess)
{
}

So in my View, I used the following snippet:

JavaScript
Var counter = 0;
foreach (var item in ProductGroups)
{
<fieldset>
<legend>@item.GroupName</legend>@foreach (var pj in item.Products)
{            

    <dl>    
    <dt>@pj.Name:</dt>    
    <dd class="text"> @if (Model.ResourceId

					==

			pj.ProjectManagerId)
    {
        <text><strong>Project

			Manager</strong></text>    }
    else    {
        @Html.Hidden("ProjectAccess[" + counter + "].key", pj.ProductId)
        @(Html.DropDownList("ProjectAccess[" + counter + "].value",
          new SelectList(new List<Object>{
          new { value = "0″ , text = "No Access"  },
          new { value = "1″ , text = "Participant" },
          }, "value", "text", pj.HasAccess(Model.ResourceId)?0:1))) counter++;
     }
    </dd>    </dl>    }
</fieldset>}

The key here was using the Hidden field for storing the key name, and the combo box for the value field. One thing though the counter values should be incremental, i.e., no gaps in sequence. Else on the model you will only get up to the sequenced item.

So now, I can easily get access to my dictionary list and figure what each of those combo values was selected to. The key can be string as well and the value can be complex object. Just follow Scott’s blog article.

License

This article, along with any associated source code and files, is licensed under The Creative Commons Attribution-ShareAlike 2.5 License


Written By
Binary Quest
Australia Australia
Sazzad is working as a developer since 2001 in the Realestate Market in Melbourne. Likes to work in C# and .Net platform. Started an ISV Business in 2008 called Binary Quest.

Follow me on Linked In

Comments and Discussions

 
GeneralMy vote of 5 Pin
Md. Rashim Uddin29-Sep-11 20:49
Md. Rashim Uddin29-Sep-11 20:49 
GeneralRe: My vote of 5 Pin
Sazzad Hossain30-Sep-11 1:01
Sazzad Hossain30-Sep-11 1:01 
GeneralMy vote of 5 Pin
bindum3129-Sep-11 20:19
bindum3129-Sep-11 20:19 
GeneralRe: My vote of 5 Pin
Sazzad Hossain30-Sep-11 1:02
Sazzad Hossain30-Sep-11 1:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.