Alphabet index

I’ve created a song lyric app and would like to add an alphabetical sector down the right hand side of the page - like in the photo attached. I’d really appreciate some direction on how to accomplish this. Thank you, Nancy

Interesting concept. Nothing native can do this, I would suggest trying the AI/Custom component to see if it can get you this.

You would need to pass a JSON array of all songs to the component, which should include a rowID in each element.

Tell the component that when you click an item, pass the ID to a column in your Users table. In that table, you want to have a relation relating that ID to the Songs table. Show the details screen of the song after the click.

That’s the way I’m dealing with Glide not having context on what element you’re clicking to perform a standard “show details screen” action. I know it’s complex (amongst the A-Z stuff you’re trying here).