Forum
Sign Up
× DataGrid for Qt.C++

Number of selected rows in GridBandedTableView

8 years 4 months ago #1 by Andrey Florinsky
What is the easiest way to get the number of selected rows in a GridBandedTableView?
I am doing as shown below, but it's bad for large data:
GridSelectionIterator* selection = m_view->selectionIterator();
int selectCount = 0;
while (!selection->end())
{
    ++selectCount;
    const int indx = selection->row()->modelRowIndex();
    while (!selection->end() && indx == selection->row()->modelRowIndex())
        selection->next();
}

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

More
8 years 4 months ago #2 by Developer Machines
selectionIterator() is deprecated in latest version of the grid. This week will be released an update. With this version it will be possible to get the selected rows count this way:
    Qtitan::GridTableView* view = m_grid->view<Qtitan::GridTableView>();
    view->selection()->ranges()[0].bottom() - view->selection()->ranges()[0].top();

P.S. Please note, In current version selection()->ranges() function has a private declaration.

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.121 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:

  • This email address is being protected from spambots. You need JavaScript enabled to view it.

  • This email address is being protected from spambots. You need JavaScript enabled to view it.

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:

  • This email address is being protected from spambots. You need JavaScript enabled to view it.( any questions related to our products or services )
  • This email address is being protected from spambots. You need JavaScript enabled to view it.( questions related to licensing )