Common UI Tile View - Can't edit items

Hi,

I’m trying to figure out how to enable/disable items in my Common Tile View but can’t seem to get it working.

Here’s a simple setup that creates 20 inventory item widgets and adds to the tile view. This first part works great but the Set Is Enabled at the end does nothing. Changing visibility also doesn’t work, and it doesn’t work if I do it later (say on a button press as opposed to On Initialized).

The widget does correctly enable/disable if it’s a standalone item on the screen, but not when part of a common tile view.

Also, if I change ‘Is Enabled’ to false in the editor for my inventory item widgets then they correctly show as disabled. But I can’t change them at runtime.

Anyone know how to do this?

Thanks!!

1 Like

The actual objects displayed in the list view are not identical to the items you added by the Add Item node. Apparently, the list view items are dynamically generated.

You need to implement the UserObjectListEntry interface on the entry widget class.

The tutorial below was very helpful to understand how it works to me:

1 Like