Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6941983
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:57:22+00:00 2026-05-27T12:57:22+00:00

I have a tab widget where every tab is a QTableView. I would like

  • 0

I have a tab widget where every tab is a QTableView. I would like to be able to pass an updated model (QModelIndex) into each tab whenever the contents of that tab need to change.

The alternative (and nastier way) is for me to delete all the tabs, and then recreate them.

I know I can get the widget in the tab by doing something like:

    tabWidget->widget(i);

This will return a widget, which is really a QTableView, but I want to update the model that is in that widget without having to delete and recreate the tab.

Thank you!

P.S. This is my current attempt…

for (int i = 0; i < tableView.size(); i++)
{
    tabWidget->setCurrentWidget(tableView.at(i));

    QTableView* updatedTable = (QTableView*)tabWidget->currentWidget();

    updatedTable->setModel(dataModel);

    tableView.replace(i, updatedTable);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T12:57:23+00:00Added an answer on May 27, 2026 at 12:57 pm

    It’s not clear why you can’t keep the QTableView widget and just change the model, as in your code. Doesn’t the view refresh without this tableView.replace thing?

    There doesn’t appear to be a direct API for replacing the widget you put in with addTab() without going through a tab removal step. But instead of inserting the QTableView directly, you could instead call addTab() on a dummy widget that has a layout in it with a single item. A QStackedLayout, for instance:

    QWidget* dummy = new QWidget;
    QStackedLayout stackedLayout = new QStackedLayout;
    stackedLayout->addWidget(tableView);
    dummy->setLayout(stackedLayout);
    tabWidget->addTab(dummy);
    

    Then later, when you want to replace the tableView with a new one:

    QWidget* dummy = tabWidget->currentWidget();
    QStackedLayout newStackedLayout = new QStackedLayout;
    newStackedLayout->addWidget(newTableView);
    delete dummy->layout();
    dummy->setLayout(newStackedLayout);
    

    I still wonder what this is buying you that reusing the old table view couldn’t do.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a tab navigator control and I would like to make all of
In my RCP app, I have a tab folder widget. Each of the tab
I have a QTabWidget , where each tab has a QPlainTextEdit as its widget.
I have a Tab Control with multiple Tab Pages. I want to be able
I have a tab delimited file where each record has a timestamp field in
I have a tab contol with two tabs. Each one containing listviews. When the
I have a tab widget where one of the tabs is a chat-type feature.
I have a YUI resizable dialog that contains a multi-tab widget. Works fine on
I have an application that has a tab widget in it. One of the
Hi i have two tabs in my tab widget,i want to apply the two

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.