Я не могу установить цвет для элемента на сетке по индексу на QML. У меня есть сетка прямоугольника
Grid {
visible: true
id: grid
columns: matrixSize
anchors.centerIn: parent
Repeater{
model: 256
//model: serial.modelData
Rectangle{
id: cell
width: square_size
height: square_size
border.color: "black"
border.width: 1
Text {
id: txt
anchors.centerIn: parent
// text: model.modelData
text: index
color: "black"
}
color:{
for(temp = 4; temp <14; temp++){
cell.color[temp] = "yellow"
}
}
}
}
}
Это не работа. Цвет не меняется. Кто-нибудь может мне помочь?