How can i make drop down as read only in the asp.net MVC Pattern version 2 after it filles?
A:
You could use jquery to disable all options in the dropdown.
$("#DropdownID option").attr("disabled","true");
This will show the options, but they are not selectable..
femseks
2010-09-27 10:05:20