I think it doesn’t have ‘this’ (any kind of), you can look for youself [qt.gitorious.org]. I’d suggest using ‘id’ property.
Item {
Row {
Repeater {
Button {
id: myButton // now identifiable
onClicked: {
setColor(myButton) // use id
}
}
}
}
function setColor(o) {
o.color = "red";
}
}
↧