There is an issue using the Lightning list component


List items are not visible on screen when scroll down, by default why list is switched to first position ?

If you can provide Page template then it would be easy to answer your question

 Content: {
          zIndex: 2,
          x: 0,
          type: List,
          w: (w) => w,
          y: 30,
          h: 500,
          direction: "column",
          scroll: 0,
          signals: { onIndexChanged: "listIndexChanged",onItemsRepositioned:"onItemsRepositioned" },
          scrollTransition: { duration: 0.4 },
        },

Each List is added to this Content object

dont provide y value to your list itmes when you push that solves the problem.

1 Like