Hi,
I have a problem with QML SelectionListItem Element in Qt 4.8 (in Belle Refresh).
The background of the button is invisible on my Symbian device.
What I would like to see.
What I see.
And the code:
Thank youCode: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" } } } } }



Reply With Quote

