Qt 6.11 is out! See what's new in the release
blog
how to refer same table widget to different pages of tabwidget
-
i have table widget contain group infos on page 1 of tabwidget and i want to refer it to the others pages without copy it?
@GodOfCode What do you mean by "refer"? You can't show same widget instance at several places. You have to create different instances of the widget for each place where you want to show it.
-
i have table widget contain group infos on page 1 of tabwidget and i want to refer it to the others pages without copy it?
@GodOfCode One way of achieving that would be to change table widget to table view, put the data in the model connected to the view. Then you can have as many views as you like and feed all of them with a single model and a single data set.