Table view resize ability with mouse events
-
Hi
Does table view (widget /qml) have any build in resize ability with the mouse? (for the all table and not the row or columns).
From the qt documentation it's seams it's not supported.
Tnx
LiorHi,
How are you setting up your QTableView ?
By default it can be resized like any other widget. If you integrate it in another widget, did you put it in a layout ? If so, it will resize following the widget that contains it. -
Hi,
How are you setting up your QTableView ?
By default it can be resized like any other widget. If you integrate it in another widget, did you put it in a layout ? If so, it will resize following the widget that contains it.@SGaist said in Table view resize ability with mouse events:
e resized like any other widge
I created a model class and used it in qml as TableView.
My goal is to create a view that will be populated with tables, and the tables should be movable and resizable.
So I started with one table, then I realized that there is no event for table resizing using the mouse.