|
|
|
|
|
Re: select all check boxes [message #518034 is a reply to message #518027] |
Mon, 01 August 2011 00:04 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
OK then, here's how you might try to do that; adjust object names that don't match your own.
if checkbox_checked('buttons.cb_select_all')
then
-- SET ALL CHECKBOXES
go_block('tabular_block');
first_record;
loop
:tabular_block.cb_checkbox := 1;
if :system.last_record = 'FALSE' then
next_record;
else
exit;
end if;
end loop;
elsif <fill in the code which would remove all checks>
|
|
|