How can i update the ListView

How can i update the ListView,i can’t find the idear for every where,thanks a lot!

Create a widget blueprint that you want to populate the List View with and implement User Entry Object List interface. Add those widgets to the List View as normal.

thank you for answer,i can add widgets to the list view ,but i can’t update the items in the list,for example, i add a text in the list ,but i can’t change the text value in the list

Never said it’s going to work well. :smiley: I was secretly hoping it would work well for you!

It’s buggy as hell atm, see here:

oh,This is indeed a major mistake, anyway, thank you for your answer.

Have a look at Flemmard’s post in the link above, I think he cracked it.

I know it has been years since this thread was opened, but here is a solution to updating a list view when an entry needs to change that works very well for me:

Just call the RegenerateAllEntries function which is defined in ListViewBase and inherited by ListView and all its children (CommonListView, EditorUtilityListView, TileView and TreeView)

2 Likes

Thanks for this, helped me fix an issue when trying to change existing list entries.