views:

12

answers:

1

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