In a calculated field I would like to add a string to another one in the last record of the foundset, like:
outputstring = 'blablabla';
if ( controller.getMaxRecordIndex() == controller.recordIndex )
{
var outputstring = outputstring + 'thelastblabla';
}
return outputstring;
But the field remains empty in all cases.
In FM I can use the Status Functions in calculations, what is the Servoy equivalent?