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

I have marked a property as readonly in the model class, like this:

public class RegisterModel
{
    [Display(Name = "User name")]
    [ReadOnly(true)]
    public string UserName { get; set; }
    ...
}

and in my view:

@Html.EditorFor(m => m.UserName)

but when I run the application, the textbox is not readonly.

I know I can use html attributes in the view to make it readonly, but I would prefer if this can be done in the model class itself.

Can it be achieved?

share|improve this question
+1 for trying!! – Dave A Feb 21 at 6:13

2 Answers

Try Using Editable instead Readonly on the model .

[Editable(false)]

I guess you have already looked into Does ReadOnly(true) work with Html.EditorForModel?

also a fine article odetocode.com

share|improve this answer
Another excellent point. But more importantly, don't count on annotations for everything. They're great, but we get spoiled and expect them to wipe after us a little too often – Dave A Feb 21 at 6:16

ReadOnly attribute does not set the input to read-only.

Try this

Html.TextBoxFor(x => x.UserName, new { readonly = "readonly" })
share|improve this answer
thanks, but as I said, I don't want to use the html way to do this, I am looking for some solution that will generate the "readonly" into the html when reading metadata from the model – Edi Wang Feb 21 at 6:10
@EdiWang sadly THIS IS TRUE. I was about to post it myself when answer came up. – Dave A Feb 21 at 6:10
@Dave A Oh, really? This is not nice..... :( – Edi Wang Feb 21 at 6:11
@EdiWang, LOL you are sooo right! Many developers have wasted many painfull hours finding this out! – Dave A Feb 21 at 6:12

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.