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

What option do I need to set to make a drop down box readonly when using MVCs Html.DropDownList?

I've tried things like....

Html.DropDownList("Types", Model.Types, new { _Enabled = "false" })

...and many different things along this line; alas no joy!

I thought this would be an easy.....and it probably is!

share|improve this question
2  
Notice @Thomas' answer below. Marking the Html.DropDownList as disabled stops the form from posting the value it holds. How can the control be disabled or read-only but still submit the form value on post? – YeahStu Apr 27 '10 at 16:32

3 Answers

up vote 18 down vote accepted

Try this


    Html.DropDownList("Types", Model.Types, new { @disabled = "disabled" })

share|improve this answer
1  
That's the puppy. Thanks. – ETFairfax Oct 30 '09 at 9:00

Or you can try something like this:

Html.DropDownList("Types", Model.Types, new { @readonly = "true" })
share|improve this answer
<script type="text/javascript">
$(function () {
        $(document) .ajaxStart(function () {
                $("#dropdownID").attr("disabled", "disabled");
            })
            .ajaxStop(function () {
                $("#dropdownID").removeAttr("disabled");

            });

});
</script>
share|improve this answer

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.