how to work with Check-Box [message #310268] |
Mon, 31 March 2008 15:38  |
adilsami
Messages: 46 Registered: October 2007
|
Member |
|
|
Hi,
In a form which have list of record's displayed (tabular),
and every row has a check-box in front of it.
when i press the delete button, ONLY the select rows should
be deleted .
how i can do that ..
Regards,
Adil
|
|
|
|
Re: how to work with Check-Box [message #310282 is a reply to message #310268] |
Mon, 31 March 2008 17:50   |
adilsami
Messages: 46 Registered: October 2007
|
Member |
|
|
hey thanx buddy,
but I've solved it with this :
on the WHEN-BUTTON-PRESSED Trigger :
GO_BLOCK('BLOCK_NAME');
IF :BLOCK_NAME.CHECKBOX_NAME ='Y'
THEN
DELETE_RECORD;
COMMIT;
END IF;
I've set the check-box properties
value when checked = Y
value when un-checked = N
[Updated on: Mon, 31 March 2008 17:53] Report message to a moderator
|
|
|
|
|
|