[Qt-qml] Repeater element missing the border between the items
Rakesh.Mutharaju at tieto.com
Rakesh.Mutharaju at tieto.com
Tue Apr 20 10:08:06 CEST 2010
Hi,
I have a similar type of list content, instead of rewriting them for n-number of times I used Repeater element, I noticed that the border or seperator between the items is lost.
For eg.,
Rectangle {
id: myitemrect1
x: 0
y: 536
width: parent.width
height: 70
color: "#babec1"
border.color: "#7e7e7e"
anchors.top: parent.top
anchors.topMargin: 0
Text {
id: text13
x: 46
y: 20
width: 255
height: 40
text: "item1"
verticalAlignment: "AlignVCenter"
anchors.top: parent.top
anchors.topMargin: 15
anchors.left: parent.left
anchors.leftMargin: 50
font.pointSize: 20
font.bold: false
font.family: "FreeSans"
}
}
Rectangle {
id: myitemrect2
x: 0
y: 591
width: parent.width
height: 70
color: "#babec1"
anchors.top: myitemrect1.bottom
anchors.topMargin: 0
border.color: "#7e7e7e"
Text {
id: text14
x: 48
y: 600
width: 255
height: 40
text: "item2"
anchors.top: parent.top
anchors.topMargin: 15
font.bold: false
font.family: "FreeSans"
font.pointSize: 20
anchors.leftMargin: 50
verticalAlignment: "AlignVCenter"
anchors.left: parent.left
}
}
..
Above, code shows the border and works as expected. I replaced the above code with Repeater element like.,
Column {
Repeater {
model:8
Rectangle {
id: myitem
x: 0
y: 536
width: parent.width
height: 70
color: "#babec1"
border.color: "#7e7e7e"
border.width: 5 --------------->>>>>> I tried increasing the width, even then border is not visible.
Text {
id: text13
x: 46
y: 20
width: 255
height: 38
text: "item"+index
verticalAlignment: "AlignVCenter"
anchors.left: parent.left
anchors.leftMargin: 50
font.pointSize: 20
font.bold: false
font.family: "FreeSans"
}
}
}
}
Now, the border between the items is lost. Is there possibility to show the border if I use Repeater element?
Thanks and Regards,
Rakesh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.qt.nokia.com/pipermail/qt-qml/attachments/20100420/17f4bd3e/attachment.html
More information about the Qt-qml
mailing list