Listview - getting started in BP

I seem to still be having issues with getting my “updated” EntryWidget displayed in my ListView; it is adding the “default” entry data. I’m using this to make a server list. I’m spawning a ListView and adding it as a child to my WidgetSwitcher using Blueprint (my intent is to load 12 servers to the ListView, then add a new ListView to the WidgetSwitcher and I can flip through them like pages). From there I spawn a ServerEntry (passing it the session result as a constructor parameter) and add it to my ListView, but it looks like the session result is coming in blank when the ServerEntry receives it and I’m not sure why.

Edit: Figured it out! All I had wrong is that at the end (Step 5, where the example sets the text variable) I was executing a function and executing it for the list item object instead of “This” self reference object. It’s working now and I so appreciate this write-up!

Screenshot of my beautiful yet hideous server browser attached. They all show as the same because I’m just looping the same single server result 30+ times for testing.