I'm new to APL so my apologies if I'm missing something which should be obvious. I can demonstrate AutoPage working per the example given here, but can't figure out what I need to do to achieve the same behavior using the AlexaPaginatedList responsive template.
Is what I'm trying to do possible using the responsive templates?
{ "type": "APL", "version": "1.7", "import": [ { "name": "alexa-layouts", "version": "1.4.0" } ], "mainTemplate": { "parameters": [ "alexaPaginatedListData" ], "items": [ { "navigation": "none", "onMount": [{ "type": "AutoPage", "componentId": "testpager", "delay": 1000, "duration": 1000 }], "type": "AlexaPaginatedList", "id": "testpager", "headerTitle": "AutoPage Test", "headerAttributionPrimacy": false, "backgroundScale": "best-fill", "backgroundAlign": "bottom", "theme": "dark", "listItems": [ { "primaryText": "Home Garden", "imageSource": "https://d2o906d8ln7ui1.cloudfront.net/images/templates_v3/paginatedlist/PaginatedList_Dark1.png" }, { "primaryText": "Home Garden", "imageSource": "https://d2o906d8ln7ui1.cloudfront.net/images/templates_v3/paginatedlist/PaginatedList_Dark2.png" }, { "primaryText": "Home Garden", "imageSource": "https://d2o906d8ln7ui1.cloudfront.net/images/templates_v3/paginatedlist/PaginatedList_Dark3.png" } ] } ] } }