Checkboxes with apex_item making it read only
Hello,
I want to have a checkbox within my report and so I thought I would use apex_item.checkbox in my select statement. Here it is:
apex_item.checkbox(
19,
current_cmf.SELECTED_FOR_QA,
'readOnly="TRUE"',
DECODE(current_cmf.SELECTED_FOR_QA, 'Y', 'CHECKED="TRUE"', null)) QA
But I am not getting the desired affect as with this statement the checkbox that should be checked are not and its not displaying it as read only.
When I remove the 'readOnly="TRUE"', I get the the values that should be checked are. I have also tried using 'disabled="TRUE"' and that makes it read only but the values are not checked.
Does anybody have any ideas about this?
Cheers,
Paul.