How to make poster grip stop when it reaches the top or bottom of the list?

I’m working on my first Roku app and I’ve managed to create a PosterGrid with data loaded from a JSON file. However I’ve noticed that once I read the end or the beginning of the list, it cycles back.

homescreen.xml

<children>
        <PosterGrid 
                id="topics"
                translation="[105,240]"
                basePosterSize="[310,186]"
                itemSpacing = "[40,30]"
                posterDisplayMode = "scaleToFill"
                numColumns = "5"
                numRows = "10"
            />
</children>

Is there a way to change this behavior? Id like to place a couple of buttons at the top of the screen so I need to be able to exit the list without it cycling back to the bottom.

Ok so since posterGrid is the child of ArrayGrid you can use horizFocusAnimationStyle and vertFocusAnimationStyle. In your case you would probably want vertFocuseAnimation to be either floatingFocus or fixedFocus
https://developer.roku.com/en-gb/docs/references/scenegraph/abstract-nodes/arraygrid.md
hope this helps.