tags:

views:

22

answers:

1

How can i create connection groups inside a QListView with PyQt.

The group name should not be selectable.

Example: http://www.shrani.si/f/T/bB/gSpSsYt/connectionlist.jpg :)

+2  A: 

There are basically two approaches: add items that are the "section headings" that can be set disabled (see setFlags), or use a QTreeView.

Ivo