APEX 18.1
I need the javascript code to make a Select List Read Only, i.e no user input but able to refer to the value in other DAs (therefore NOT disabled).
This works in a Page Load DA for a text item
$x('P1021_CRG_NR').readOnly = true;
$('#P1021_CRG_NR').css("cssText", "background-color: #FFFFFF!important;");
but what is the code for a Select List?
I tried $('#P1003_CAS_AGR_UID').attr('readonly', true) but it doesn't work.
May as well throw in Text Area and Check Box if you know
thanks in advance
PaulP