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!

Report and Form - Nothing in Session - Creating an onChange Event

450042May 23 2006 — edited May 25 2006
Version 2.0

In my HTML Header section:

function compute_total_cost()
{
document.getElementById('P2_TOTAL_COST').value =
parseInt (document.getElementById('P2_DATA_COLLECT_FORM_PREP').value) +
parseInt (document.getElementById('P2_PRINT_COST').value) +
parseInt (document.getElementById('P2_MAIL_COST').value);
}

and a call of onChange="javascript:compute_total_cost();" in each of the costing HTML Form Element Attributes. But if there's noting in session, how can the values be accessed?


Thanks,
Joe

Message was edited by:
Joe
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 22 2006
Added on May 23 2006
20 comments
520 views