Forum
Sign Up
× DataGrid for Qt.C++

Focused row changed after model refresh

1 year 2 weeks ago #7 by Developer Machines
The problem is clear now.

In the QtnGridBase.cpp source change the code from:
    void modelAboutToBeUpdated(bool clearAll) override
    {
        m_base->hideFilterPanel();
        m_base->hideEditor();
        if (clearAll)
        {
            m_base->removeColumns();
        }
    }
to:
    void modelAboutToBeUpdated(bool clearAll) override
    {
        m_base->hideEditor();
        if (clearAll)
        {
            m_base->hideFilterPanel();
            m_base->removeColumns();
        }
    }

Please, let me know the result.

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

More
1 year 2 weeks ago #8 by JUAN CARLOS FONT
Hi,
thanks for the quick support, yes, that seems to have solved it.

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.125 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 )