I have a model like this:
public class MyModel {
[ScaffoldColumn(false)]
public int CharityId { get; set; }
[UIHint("Charities")]
public SelectList Charities { get; set; }
}
Then I have an EditorTemplate called Charities.cshtml:
@model MyModel
@Html.DropDownListFor(model => model.CharityId, Model.Charities)
Then in my page:
@model MyModel
@Html.EditorForModel()
However, no matter what, it doesn't render the Charities template. I've been wracking my brain on this, and it should work.. but it's not.
Any ideas?
EDIT:
The issue is that the default Object template will not render a complex object other than itself (so called shallow dive), even if there is a UIHint. I was under the impression that a UIHint would make it render the template, but I was apparently wrong.
The fix is to not try to let the model render itself. That is sad.