i am using
APEX_ITEM.CHECKBOX2(
p_idx => 1,
p_value => ROWNUM,
p_attributes => 'UNCHECKED',
p_checked_values => NULL,
p_checked_values_delimiter => ':',
p_item_id => 'f01_#ROWNUM#',
p_item_label => 'Label for f01_#ROWNUM#') "Select"
suppose there are ten checkboc on one page
In Plsql process when i use
-----------------------------------------------------------------------------------------
FOR i in 1 .. APEX_APPLICATION.G_F01.COUNT LOOP
when i click on 5th checkbox
declare
begin
insert into tablename values(APEX_APPLICATION.G_F01(i);
end;
and use insert process itakes i=1
----------------------------------------------------------------------------------------------------------
when i use
declare
c=APEX_APPLICATION.G_F01(i);
raise_application_error(-20001, c);
and use
begin
insert into tablename values(APEX_APPLICATION.G_F01(c);
end;
then it gives no data found for rest of the checkboxes unchecked and c=5;