QComboBox cbGroups;TreeModel model;cbGroups.setModel(&model);QTreeView view;cbGroups.setView(&view);view.setHeaderHidden(true);view.expandAll();
C++ (Qt)QModelIndexList il = QComboBox::model()->match( ... );QComboBox::view()->setCurrentIndex( il.first() );
QModelIndexList list = МоёКомбоБокс.model()->match(QModelIndex(), Qt::DisplayRole, "Текст_для_поиска", -1);
QModelIndexList list = МоёКомбоБокс.model()->match(МоёКомбоБокс.view()->rootIndex(), Qt::DisplayRole, "Текст_для_поиска", -1);
QList<T>::at: "index out of range"