Bonjour,

J'aimerais savoir comment passer une propriété d'un repeater (ou de son parent le plus proche) vers ses délégués. Ex :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
 
Component { 
   id : myDelegate
   Text { 
        text : index
   }
   Text { 
        text : myProperty
   }
}
 
Row { 
    property string myProperty : "myValue"
 
    repeater {
          model : 10
          delegate : myDelegate
    }
}
Merci