how to readonly dropdown using jquery code example
Example: jquery set select readonly
$('#dropdown').attr("disabled", true);
// Drop down is always read only. What you can do is disable it
$('#dropdown').attr("disabled", true);
// Drop down is always read only. What you can do is disable it