Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Checkbox Group, disable item option

Edgar SiniavskijMay 11 2022

It is possible to disable one option of checkbox group? I have created an P100_CREATE_PT item and disable one option using JavaScript:

const nodeList = document.querySelector("#P100_CREATE_PT_0");
if(nodeList) {
  nodeList.disabled = 'disabled';
  nodeList.checked = true;
}

But there is one problem: after page submit Checkbox Group item is null (undefined), but if disabled option is not set - item is not null, is okay. Where is problem?

Comments
Post Details
Added on May 11 2022
4 comments
1,021 views