check box with different labels
hi
i m using oracle form 6i.i have form with one item in tabular format.item property is checkbox .what i want is to have different labels( each check box row label should be diffent).i want to know whather it is possible as i saw as application developed in form 6i and he has done same thing.
what i tried is that, i wrote a procedure in when-new-block-instance to check.but it shows only one record as label of table emp
BEGIN
GO_ITEM('BLOCK2.ITEM4');
FIRST_RECORD;
FOR I IN (SELECT ENAME FROM EMP) LOOP
SET_ITEM_PROPERTY('ITEM4',LABEL,I.ENAME)
NEXT_RECORD;
END LOOP;
FIRST_RECORD;
END;
thanx in advance
Edited by: user581618 on Jan 27, 2009 10:25 AM
Edited by: user581618 on Jan 27, 2009 10:31 AM
Edited by: user581618 on Jan 27, 2009 11:26 AM