Qt 6.11 is out! See what's new in the release
blog
Should I use a model / view for this master / detail interface?
-
I have a master / detail stored in two arrays and I want to display the data in two tables on the interface. I am not connecting the data to a SQL database, although it is stored in a binary file. Should I use QTableView for both the master and detail, or will there be a problem maintaining the detail / model?
-
Hi,
Where exactly are these data stored ? How are you loading them ?
-
How are you reading them ?
-
You can implement a custom QAbstractTableModel on top of your data and you should be good.