How to control Check Box in Interactive Report (Allow One Selection of check box at time similar like Radio Button in Oracle APEX)
How to control Check Box in Interactive Report (Allow One Selection of check box at time similar like Radio Button in Oracle APEX) Step 1 : Create Interactive Report with APEX_ITEM API for check box ,define p_attributes with OnlyOneChecked function while click on check box Go to Created Interactive Report ans change the setting of L_sel column (Escape Special Character off) Step 2 Your Output look like Step 3 :- Global Declaration (Define the OnlyOneChecked function). This code users JavaScript function to validate that only one check box is checked in group of check boxes. function OnlyOneChecked(pThis){ var ml = document.wwv_flow; var len = ml.elements.length; var indx; if (pThis.checked == false) pThis.checked = false; else { for (var j = 0; j < len; j++) { var e = ml.elements[j]; var e_type = e.type; if (e_type == ‘checkbox’) { e.checked = false; } } pThis.checked = true; } } step 4 (Test the Result) Multi Check box selection not allowed, only one check at time you can sel...