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 8039615
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T03:37:43+00:00 2026-06-05T03:37:43+00:00

I have a virtual table view implementation with the following model: class MyModel: public

  • 0

I have a virtual table view implementation with the following model:

class MyModel: public QAbstractListModel
{

    int columnCount (const QModelIndex & parent = QModelIndex() ) const { return 2; }
    int rowCount (const QModelIndex & parent = QModelIndex() ) const { return count; }
    QModelIndex parent (const QModelIndex & index ) const { return QModelIndex(); }
    QModelIndex index (int row, int column, const QModelIndex & parent = QModelIndex() ) const { return createIndex(row, column); }


QVariant data(const QModelIndex & index, int role) const
{
    int col = index.column();
    int row = index.row();

    if (role == Qt::DecorationRole && col == 0)
    {            
        return getIcon(row); // icons in the first column
    }
    else if (role == Qt::DisplayRole && col == 1)
    {
        return getText(row); // text in the second column            
    }
    else
    {
        return QVariant();
    }
}

void update()
{
  getNewText();
  getNewIcons();  
  emit dataChanged((index(0,0)), index(count-1,1));
}

}

After creating the table view and assigning the model for the first time, everything works fine: I get, say, 10 items in the table view.

But then I update the model, and now it has 12 items. Only first 10 of them are displayed. It looks like it cached the value of 10 and doesn’t want to update it.

How can I fix that?

  • 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-06-05T03:37:45+00:00Added an answer on June 5, 2026 at 3:37 am

    I solved it by calling beginRemoveRows, endRemoveRows, beginInsertRows, endInsertRows in the update method

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

Sidebar

Related Questions

I have the following view model: public class BudgetTypeSiteRowListViewModel { public virtual int BudgetTypeSiteID
I have my view models : public class POReceiptViewModel { public virtual int PONumber
I have the following entities in Entity Framework: public class School { public int
Does every class have virtual function table in C++? I know virtual table is
I have 2 virtual networks, say 10.116.10.xxx and 10.116.11.xxx. I have the following code
I have a code similar to this: My View @model MyCode.Models.RemarksModel foreach (var row
I have a table, demo_fact in Oracle 11g and it has several virtual columns
I have such table: CREATE VIRTUAL TABLE t USING FTS3(hidden, text1, text2) I would
I have created a model POCO class called Recipe ; a corresponding RecipeRepository persists
I do not have much idea about the functionality of the Virtual Table, but

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.