Forum
Sign Up
× DataGrid for Qt.C++

Upgrade grid from another thread

5 years 10 months ago #1 by Alexander
Hello
I have an application, that displays some data in grid, that is changing over time. The number of rows always stay the same. I calculate my data in separate thread. But when I’m trying to update my model from that thread, the grid doesn’t change.
QStandardItemModel *dataFormModel;
void realObjectList::updateDataInTable(const std::vector<ModelObject>& aObjectList)
{
   if (aObjectList.size() == dataFormModel->rowCount())
      {
         for (int i = 0; i < aObjectList.size(); i++)
            {
            dataFormModel->item(i, 3)->setData(QString::number(aObjectList[i].GeogCoordinate()), Qt::DisplayRole);
            // Update other columns
            //   ...
	    }
      }
}

If I call this method in timer from GUI, it works ok. But I need to make my calculation in separate thread.

Regards,
Alex

Please Log in or Create an account to join the conversation.

More
  • Not Allowed: to create new topic.
  • Not Allowed: to reply.
  • Not Allowed: to edit your message.
Moderators: Developer Machines
Time to create page: 0.164 seconds

Developer Newsletter

Join our Developer Machines newsletter to get informed on all the latest releases of the commercial components for Qt.C++, Delphi FireMonkey, updates and general knowledges.

Quick Support

Should you need any additional information about our products or licensing, please contact us at the following email addresses:

  • support@devmachines.com

  • license@devmachines.com

Get in Touch

If you would like to purchase our products or services, but don’t know how to do it the right way, please feel free to contact us:

  • support@devmachines.com( any questions related to our products or services )
  • license@devmachines.com( questions related to licensing )