HOWTO PASS THE ENTERED VALUE AS PARAMETER TO PARTIAL FIRE ACTION EVENT?
I have taken the value from one field entered by user and after calculation assigned that value to another column but event for the assigned column is not triggering and existing calculation on that column is not working.
Assigned column of that current row's "DynCalcUpd" event is not triggering. It is triggering for the input column but not for the assigned value column. See the code below for the reference.
callmultfun = oadbtransaction.createPreparedStatement(get_multiplication,2);
callmultfun.setString(1, BasicSalMult);
callmultfun.setString(2, CountryMeritBudget);
try {
mult_result = callmultfun.executeQuery();
if (mult_result.next())
{
Mult_resultvalue = mult_result.getString(1);
currentrow.setAttribute("PctOfEligSalOpt1",Mult_resultvalue);