Hi all,

Newbie here, I have created a QTreeWidget for displaying a list of records but I need to implement a filter functionality that allows the user to view only the records that fit the filter requirements.

E.g. would be I have records with the following columns, (Cateogry, Record Name, TimeStamp, Description, RecordID)

I would like to allow the user to filter according to the timestamp or cateogry and record name.

Currently, my implementation is that I will hide all items and then use QTreeWidget's findItems to show the items that fit the criteria. This is inefficient and I hope to get your opinions on this.

THanx for the help.
Harpo