Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Trouble changing selection mode for a QTableWidget
Forum Updated to NodeBB v4.3 + New Features

Trouble changing selection mode for a QTableWidget

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 2.8k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • E Offline
    E Offline
    Endless
    wrote on last edited by
    #1

    Everything is fine when I do the following:
    @
    logTable->setSelectionBehavior(QAbstractItemView::SelectRows);
    @

    (logTable is a pointer to a QTableWidget)

    Then I tried changing the SelectRows to NoSelection. NoSelection is in the documentation as a valid choice, but I get the error:
    No matching function for call to 'setSelectionBehavior(QAbstractItemView::NoSelection)'

    I don't want any of the items in the table to be selected. How do I do this?

    1 Reply Last reply
    0
    • G Offline
      G Offline
      goetz
      wrote on last edited by
      #2

      You're mixing behavior and mode:

      setSelectionBehavior() takes on of "this values":/doc/qt-4.8/qabstractitemview.html#SelectionBehavior-enum (items, rows, columns).

      You want to call setSelectionMode(), which takes, among QAbstractItemView::NoSelection, "those values":/doc/qt-4.8/qabstractitemview.html#SelectionMode-enum.

      http://www.catb.org/~esr/faqs/smart-questions.html

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved