Reputation: 3637
Is there a GridView implementation for native Qt (not for QML)? I need to read some data from model and put them into GridView.
GridView in QML support dynamic rows/columns, it's friendly to the users when resizing. Or, I have to implement it with QWidget
and QGridLayout
?
Upvotes: 5
Views: 4306
Reputation: 11
There is commercial data grid for Qt/C++ here http://www.devmachines.com/qtitandatagrid-overview.html We use it without any issues.
Upvotes: 0
Reputation: 1060
In my experience you have several possibilities:
Upvotes: 4