Docs (4.0.0)
class UIListView type

type ItemEvent

Type alias for events delegated by UIListView.ItemControllerView.

static

type ItemEvent<TItem, TSource extends ManagedObject = ManagedObject> = DelegatedEvent<ItemControllerView<TItem>, TSource>

Notes

  • This type can be used for the argument of an event handler, for events that were originally emitted within a list item view, and have been delegated by UIListView.ItemControllerView. The list item itself is available as event.delegate.item.

Related