import QtQuick 1.0 Item { id: newsRect width: window.width ListView { x: 0; y: 0 id: list width: newsRect.width; height: window.height model: currentSource.listModels[componentDepth-1] delegate: NewsDelegate { } highlight: Rectangle { color: "steelblue" } highlightMoveDuration: 600 } ScrollBar { scrollArea: list; height: list.height; width: 8; anchors.right: list.right } Component.onCompleted: list.currentIndex = -1 }