Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm creating a MVC-application which currently uses EditorFor to gennerate a lot of views. The whole view is basically just an EditorForModel, and it works great. However, I've reached one small problem, which I can't seem to find a solution for, and it is important that it works the way I need it to, and that is when trying to render EditorFor an interface. The bindings and everything like that's been taken care of, but the problem is that the EditorFor sees that it's an interface, and defaults to the "Object" template. I need it to look at the interface and see if it can find a template with that name, and if it can't, I need it to look trough all the interfaces present to see if it matches any of them. To explain it more simply look at this example:

interfaces:

public interface IAppProvider
{
    string Name { get; set; }
}

public interface IAppMusicProvider : IAppProvider
{
    int GetPlaylistCount();
} // Yeah, I know, this interface is not smart, but it's only for show.

If I now create a View with model = "IAppMusicProvider", and run Html.EditorForModel(), I need it to find the "~Views\Shared\EditorTemplates\IAppProvider.cshtml"-template. Is there any simple way I can achieve this?

share|improve this question

1 Answer

up vote 1 down vote accepted

Did you try using the [TemplateHint] attribute?

share|improve this answer
Yeah, that works, but it's not a way around the problem (or rather I used the [DataType] attribute actually). The application I'm making is going to run plugins, and I need for it to work only by setting the interface, and not having to force all the plugin-developers to user [DataType("IAppProvider")]. – Alxandr Nov 12 '10 at 2:56
Try naming the template the same as the interface? If I remember those are the only two options. – jfar Nov 12 '10 at 3:11
That won't work either, because the template needs to work for all IAppProviders. I'm looking for some way to override this default behavior, so that if I supply a IAppProvider-implementing interface, it will use the IAppProvider-template. This probably needs to be coded somewhere in MVC (some component that needs to be changed, like you can do with ControllerFactory etc), but I don't even know where to start. – Alxandr Nov 12 '10 at 3:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.