how to make dropdown in asp.net mvc as readonly? -


How can I drop down only after reading in asp net MVC pattern version 2?

You can use jquery to disable all the options in the drop down.

  $ ("#DropdownID options"). Attr ("disabled", "true");  

This option will show, but they are not selectable ..


Comments