I Have a model MyModel
public class MyModel { [UIHint("Str")] public string Name {get;set;} }
In the View, I am rendering model using
@Html.DisplayForModel("SomeTemplate")
So, the model is using SomeTemplate as it DisplayTemplate.
So the UIHint is not being rendered in the SomeTemplate.
Is there any solution to render the UIHint in another DisplayTemplate or is it not possible at all,