This is due to pagination. All your records are paginated for performances reasons, so I’m guessing that your submissionItems are configured to only display 10 records per page, is that right ?
Hi I have it set for 65 records per page, and if I view this table from the a collection that it’s related too in the summary view it also shows 65 records per page. Only when I use the smart view does it limit the records.
I would have thought that using this code
{{#each @records as |record|}}
{{#each @record.forest-comments as |comment|}}
<p>{{comment.forest-text}}</p>
{{/each}}
{{/each}}
would fetch the records based on the page size that has been set.
Hi @Zero Unfortunately you must change the way you retrieve the datas.
I’m gonna try to give you some exemples to help you to reach your goal. template.hbs
@Arnaud_Moncel tried this and it works a bit when i have it loading 50 records it returns back with a ling base64 string. And if I check the console logs the loaded records are showing in there.
But if I reduce the records per page down to 15 then it loads the data properly. As I know I have more then 50 records for the page that I’m trying to view.