Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

creating textbox when button clicked

759101Mar 23 2010 — edited Mar 26 2010
i have a requirement where in form , add person button ... adds a textbox .....

i found two ways o do it ...

1) using add_item.text utility package

2) using java script




while using util package in a report ..... whose
sql query is

select empno , add_item.text(1,empno) from emp ;


is working fine ....
but this is only a sql query



when i m trying to create a plsql process


declare
n number;
begin
select empno into n , apex_item.text(1,empno) from emp where ename="smith";
end;




its giving the error as apex_item.text must be declared ....


please help me ....
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 23 2010
Added on Mar 23 2010
5 comments
1,031 views