リピーターを使用して以下のようなグリッドを定義しました
Grid {
id: grid
x: 8;y:8
clip: true
smooth: false
rows: 6; columns: 6; spacing: 3
Repeater {
id:table
model:36
Cell { //an item created by me
clip:true
color:"blue"
}
}
}
grid内の任意のセルの位置を取得したい。そのために、QML ファイルのどこかに x:table.itemAt(3).Center と書きました。
しかし、itemAtは機能していません。実際、私がテーブルを書いているとき。QT は提案ツールチップにitemAtを表示していません。何をすべきか?