How to write a checkbox value in items
Hi there,
is there a way to write a value belonging to a checkbox in an item? [apex 4.2]
Lets say I have the following statement :
SELECT TRUNC (SYSDATE, 'MON')+rownum-1 as DAYS
FROM DUAL
CONNECT BY LEVEL <= 31
Now I want to add a checkbox and this checkbox should write all checked values in a Page Item called P5_DAYS
And I want that these values are deleted if the checkbox is unselected.
Is there a way to do this (maybe without jquery?). Does Apex 4.2 has some built in features to handle this?