import QtQuick 2.2 import Ubuntu.Components 1.3 import Ubuntu.Components.ListItems 1.3 Item { id: mainWindow width: 800 height: 800 ComboButton { id: combo anchors.centerIn: parent ListView { id: view objectName: "listViewOptions" model: 10 delegate: Label { objectName: text text: "Item #" + index width: combo.width height: units.gu(3) MouseArea { anchors.fill: parent onClicked: { console.debug("CONTENT ITEM SELECTEDDDDD:" + index) combo.expanded = false } } } } } }