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!

how to clear fields in a form after submit ?

SabyasachiJul 25 2012 — edited Jul 25 2012
Hi everybody

I have created a region and created 4 page items
P4_empno
p4_ename
p4_deptno
p4_sal
and two region buttons
submit
Cancel
To insert into the my emp table i created a dynamic action on submit button
event  :click
selection type :button
button :submit
condition :no condition

true action
Execute plsql code:

begin
insert into emp select P4_empno,p4_ename,p4_deptno,p4_sal from dual;
end;
Well now now i can insert values to the table by clicking the submit button
but after submit the page is not refreshing and the values what i entered are still showing.

So please can anyone tell me what to do?

Thanks,
Regards,
Sabyasachi
This post has been answered by fac586 on Jul 25 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 22 2012
Added on Jul 25 2012
7 comments
2,519 views