Can i call a “shared” editor template from within a “areas” editor template, for the same model?
I've got an editor template location in: Areas/Posts/Views/Shared/EditorTemplates/Question.cshtml I also have one in: /Views/Shared/EditorTemplates/Question.cshtml For both, the model is the same. What i'm trying to do is within a View in the Posts area, call my editor template in the area, set some HTML and then bubble back up to the main shared editor template. Here's the Posts EditorTemplate: @model xxx.ViewModels.QuestionViewModel @Html.Hidden("Id", (byte)Model.QuestionType) @Html.EditorForModel() But all it does it render out the hidden field, not the contents of the shared editor