I have a nested repeat of noncompliance and noncompliance_photos.
${#noncompliance}
$#{noncompliance_photos}
${/}
${/}
In a feature report template, how do I use the $feature keywork to get the position of each record?
${#noncompliance}${if (noncompliance_photos | getValue:"count")>0}
Non-compliance Number: ${$feature | getValue: "position"}
Photo Number: ${$feature | getValue: "position"}
${/}${/}
The above only gets the position of the inner-most repeat, not the parent repeat.
Any help with this?