SelectionListItem Element - Qt 4.8
Hi,
I have a problem with [URL="http://doc.qt.nokia.com/qt-components-symbian/qml-selectionlistitem.html"]QML SelectionListItem Element[/URL] in Qt 4.8 (in Belle Refresh).
The background of the button is invisible on my Symbian device.
[IMG]http://s9.postimage.org/harskiqfj/example1.png[/IMG]
What I would like to see.
[IMG]http://s9.postimage.org/tqoie9jrj/example2.png[/IMG]
What I see.
And the code:
[CODE]import QtQuick 1.1
import com.nokia.symbian 1.1
Page {
id: mainPage
SelectionListItem {
id: item
title: "City"
subTitle: selectionDialog.selectedIndex >= 0
? selectionDialog.model.get(selectionDialog.selectedIndex).name
: "Please select"
onClicked: selectionDialog.open()
SelectionDialog {
id: selectionDialog
titleText: "Select one of the values"
selectedIndex: -1
model: ListModel {
ListElement { name: "Helsinki" }
ListElement { name: "Oulu" }
ListElement { name: "Rovaniemi" }
ListElement { name: "Tampere" }
ListElement { name: "Vaasa" }
}
}
}
}[/CODE]
Thank you
Re: SelectionListItem Element - Qt 4.8
Hello,
the SelectionListItem control for symbian dropped the background after version 1.1
The version 1.1 is here: [url]http://qt.gitorious.org/qt-components/qt-components/blobs/1.1-symbian/src/symbian/SelectionListItem.qml[/url]
Pablo