PDA

View Full Version : QTreeView



marnando
12th March 2014, 19:52
Hi, in my application I have a QTreeView with QCheckBox, but when I select a row the QCheckBox doesn't check, only when I click on QCheckBox. How can I solve this problem without create a delegate class?

anda_skoa
13th March 2014, 08:06
You could connect to the view's clicked() signal and set the check role state yourself.

Cheers,
_