How to implement a "live" table, with sorting and filtering
-
I need to implement a "live" table that initially has 100,000 rows. New rows can be added as data arrives. I need the ability to sort and filter the table contents and do it fast. Newly added data should take into account the current sorting and filter. For example, if the data is sorted from Z-A, then when you add "Zebra" it should appear at the top of the table. Does Qt have such capabilities?
-
-
-
Hi and welcome to devnet,
You might want to take a look at QSortFilterProxyModel.