Is there a Qt Quick "view" to present two dimensional arrays (spreadsheet)?
-
GridView seems like it might work but it's essentially a one dimensional list view with wrapping.
The QML TableView type requires that you create the columns at design time. It really should get the column count from the model.
The spreadsheet example uses QTableWidget which is a widget based class not a Qt Quick class.
Thanks in advance.