I am creating a component as:
List
-> KeyValue
-> LinkedList
I fill the LinkedList
with {{item}}
of the List
. Yet, within the events of the LinkedList
(such as onclick) item
becomes the item of the LinkedList
we clicked on. The hint says it is from the List
(and shows that data when writing item
), but once I use it it only allows to get the data of the item of the LinkedList
I clicked on.
To be able to carry over information from the List
to the event of the LinkedList
, I had to store it within tooltip
. Is there any chance to either:
- Add a
value
ordata
field - Have a way to disambiguate the
parent item
andchild item