Hi,
I am on APEX 24,
I have an IG “TESTS” which has a column “TEST_PRICE”. That column should be editable only if a value of an application item “ROLE_CD” = “D”.
Being non-editable is only for user, but I need to be able to set it's value using javascript.
I tried:
function(options) {
var role = "&ROLE_CD.";
if (role != "D") {
options.features.editable = false;
}
return options;
}
But it's still editable even if role_cd != “D”.