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. How to make te selected columns of QTableWidget as ReadOnly
Forum Updated to NodeBB v4.3 + New Features

How to make te selected columns of QTableWidget as ReadOnly

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 5.5k 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.
  • I Offline
    I Offline
    Indrajeet
    wrote on last edited by
    #1

    Hi All

    I have one table created using QTableWidget.
    For this table I want odd column cells to be editable
    & even column cells to be readOnly.

    How to do this?

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

      You can set the items in the even columns to read only like this:

      @
      QTableWidgetItem *twItem = tableWidget->item(3, 4);
      twItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
      // if you do not need selectable items this is ok:
      twItem->setFlags(Qt::NoItemFlags);
      @

      Or set the flags during creation of the items, of course.

      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