Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.MVC 3 Razor Add Model Prefix in the Html.PartialView extension

I have all most the same question as him ASP.NET MVC partial views: input name prefixes

I am tring to create CRUD operations for this data entities:

public class UserViewModel 
{  
   protected virtual Id {get; set;} 
   public virtual string Login { get; set; }
   public virtual string Password { get; set; }
   public virtual ZipCodeViewModel ZipCode { get; set; }
}

Zip Code entity:

public class ZipCodeViewModel
{        
   public virtual string City { get; set; }

   public virtual string State { get; set; }           

   public virtual string Zip { get; set; }
}

I also have partial view ZipCode which used UserViewModel.ZipCode:

@model ZipCodeViewModel    

    @Html.TextBoxFor(x => x.Zip, new { id = "ZipCode", name = "ZipCode.Zip", maxlength = "5" })     

I am going to use ZipCodePartialView in another Page (for example user).

@model UserViewModel
.....
@{Html.RenderPartial("Zipcode", Model.ZipCode);}

When MVC save User ZipCode field Zip is empty.

So question is how I can add model prefix to the patrial View?

like image 972
Ivan Korytin Avatar asked Feb 04 '11 13:02

Ivan Korytin


2 Answers

Try this extension:

public static void RenderPartialWithPrefix(this HtmlHelper helper, string partialViewName, object model, string prefix)
        {
            helper.RenderPartial(partialViewName,
                                 model,
                                 new ViewDataDictionary { TemplateInfo = new System.Web.Mvc.TemplateInfo { HtmlFieldPrefix = prefix } });
        }
like image 118
breez Avatar answered Oct 01 '22 10:10

breez


Instead of using Html.RenderPartial() put your partial view in Shared/EditorTemplates/ and name it the name of the type (in this case ZipCodeViewModel). Then you can use Html.EditorFor() passing in the expression for the property. EditorFor() prefixes the fields correctly so that the model binder in MVC can put your data in place correctly.

So something like this

@model UserViewModel
.....
@Html.EditorFor(m => m.ZipCode);

I'll try to dig up some links and resources but wanted to get the answer out there for you.

EDIT: This blog post seems to go over the basics of EditorFor() extension and EditorTempaltes: Quick Tips About ASP.NET MVC: Editor Tempaltes

Anyway, when you use those Html.TextBoxFor() or Html.DropDownFor() extensions, what they do is get the full name of the property from the expression you pass in and set the HTML input element's name and id attributes to that. Example could be:

@Html.TextBoxFor(m => m.Person.FirstName)

would render

<input id="Person_FirstName" name="Person.FirstName" type="text" value="<what ever was in FirstName>" />

Those input names and values are the key/value pairs in the post data. The default ASP.NET MVC model binder tries to match those keys up to the models your controller actions take in. If it can find a match then it sets the value.

So your problem above is probably because the input names in your partial view are from the ZipCodeViewModel down but your action is taking in a UserViewModel. The EditorFor() prefixes the names for you so it can basically render a partial view that will post data back that can be bound for you. Although you could set the name attributes yourself on the input elements (or flatten everything as you suggested in the comments) has these helpers in there to do it for you.

I hope that helps explain what is happening and a possible solution for you.

like image 34
Sean Copenhaver Avatar answered Oct 01 '22 09:10

Sean Copenhaver