This function offers you the possibility to initiate through a subtable view in a loop and process functions for single lines.
This function is not available in the mobile app and must therefore be replaced accordingly.
Example for the Desktop version with jr_loop_table
function TableLoop (subtable, rowId) {
jr_get_subtable_value(subtable, rowId, 'SPALTE1');
}
jr_loop_table('Untertabelle1', TableLoop);
Example for the mobile app
function TableLoop (subtable, rowId) {
jr_get_subtable_value(subtable, rowId, 'SPALTE1');
}
var rowIds = jr_get_subtable_row_ids('Untertabelle1');
for (var i = 0; i < rowIds.length; i++) {
var rowId = rowIds[i];
TableLoop('Untertabelle1', rowId);
}