On Wed, 5 May 2010 04:40:29 pm Menard Alexis (Nokia-D-Qt/Oslo) wrote: > Hello all, > > I've collected those feedback : > > * Mouse selection needs to be implemented in each list view with a mouse > area. It is necessary to implement the logic of "when an item is clicked, > make it the current item", whereas keyboard selection is built in.
We could add a flag to enable this behavior. > * Can't access the data of the current item in the view from outside the > delegate. Inside the implementation of a delegate, it is possible to use > model.customDataRole inside the implementation of a delegate, but if in > another element you want to get particular data for "the current item > selected in that view", it doesn't seem possible in QML. The current item is available via ListView::currentItem. > * Event handling is problematic as there is no pass through. If an Element > does not handle an event there is no way to pass the event to its parent. Which events? At least keys and mouse events are able to propagate. -- Martin _______________________________________________ Qt-qml mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-qml
