Hi,

I do have several issues with my ListView. The delegate of my ListView is a row with a checkbox, combobox and a Text. When the page is loaded I get a lot of errors:
Qt Code:
  1. AbstractCheckable_QMLTYPE_79 QVariant(Invalid) QRect(0,0 0x0)
  2. CheckBox_QMLTYPE_81_QML_83 QVariant(Invalid) QRect(727,60 0x0)
  3. qml: triggered by id: 14
  4. ComboBox_QMLTYPE_74_QML_84 QVariant(Invalid) QRect(0,0 0x0)
To copy to clipboard, switch view to plain text mode 
I get these three lines for 34 ids while 20 lines are displayed and the model has 54 ids in total. When I start scrolling down the list I get more and more of the errors for all ids. The rows them self are fine. They are displayed correctly but for me it is an issue that the triggered event for the comboboxes is emitted without the user changing it.
Is this a bug in QML or a feature? Is it possible to get rid of the warnings? How can I separate user input from system triggers?

I am using the following imports:
Qt Code:
  1. import QtQuick 2.5
  2. import QtQuick.Controls 1.4
  3. import QtQuick.Layouts 1.2
  4. import QtQuick.Dialogs 1.2
  5. import QtQuick.XmlListModel 2.0
To copy to clipboard, switch view to plain text mode 

Thanks!