Report and Form - Nothing in Session - Creating an onChange Event
450042May 23 2006 — edited May 25 2006Version 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