[solved] Accessing index of parent Repeater
QML and Qt Quick
2
Posts
1
Posters
2.1k
Views
2
Watching
-
I find a way if that can help someone :
@Repeater{Item{
id:p
property int parentIndex: index
Repeater{
//index refrer to the second repeater
//p.parentIndex to the first repeater
}
}
}@