I have a form with a table view and want to display one of the columns with amended data (need to perform a calculation on the foundet value on a particular coilumn then diosplay that result)
So I tried something whereby i defined a global variable and on the form I defined a field with it as the data provider.
Using the following code the form only displays the last rows values on every row instead of each row having a unique value.
Any ideas how I do this would be appreciated.
for ( var i = 1 ; i <= foundset.getSize() ; i ++ ) {
var vRecord = foundset.getRecord(i);
do something with vRecord.mycolumn
globals.glbl_variable = result of the calculation
// the global.glbl_variable is the coilumn data provider on the form
}
}