I've been browsing everywhere and I just cannot find any information on how to create a certain type of header to a TableView in Qt Creator.
I want it to look similar to this:
I've been browsing everywhere and I just cannot find any information on how to create a certain type of header to a TableView in Qt Creator.
I want it to look similar to this:
short answer: there is no settings in the QTCreator that you can set to define the Header of a table view...
long answer: That is a TableView with custom model. you need then to define a new Model that inherits the QAbstractTableModel
and then in tne FooModel header override the headerData method
then in the in cpp:
and finally in controller: