Checkbox option for variables ignores default

SunDog

Member²
I'm trying to use a checkbox variable but it seems to ignore the value of "default" and "ifEmpty". So when I execute the procedure and I want it to defaults to the "checked" value, I have click the checkbox twice.

Execute this simple example and do not change the checkbox. It will put "Unchecked" instead of the expected "Checked".

DECLARE
lv_cbx VARCHAR2(10) := &;
BEGIN
dbms_output.put_line(lv_cbx);
END;
/

Thanks
 
Back
Top