About 7,220,000 results
Open links in new tab
  1. c++ - QTableWidget vs QTableView - Stack Overflow

    QTableWidget is a QTableView PLUS a basic data model, built in. The table manages its own data. Then, if performance and memory issues are your primary concern and you think you …

  2. qt - Reading selected Items from QTableWidget - Stack Overflow

    Jun 4, 2013 · 6 How can read selected items from QTableWidget? Thanks qt qtablewidget edited Jun 4, 2013 at 7:58 Aleksandar 3,661 4 37 60

  3. python - PySide - PyQt : How to make set QTableWidget column …

    Jun 29, 2016 · table = QTableWidget() delegate = ResizeDelegate(table, 0) table.setItemDelegate(delegate) ... # Add items to table table.resizeColumnsToContents() You …

  4. How to add new row to existing QTableWidget? - Stack Overflow

    Aug 5, 2011 · 32 My app is phonebook (educational purposes). When user opens application, QTableWidged is filled with data loaded from .xml file. When user add new phone number, I …

  5. How to select multiple rows in QTableWidget? - Stack Overflow

    Jun 17, 2016 · How to select multiple rows in QTableWidget? Asked 9 years, 6 months ago Modified 3 years, 11 months ago Viewed 18k times

  6. How to implement a filter option in QTableWidget - Stack Overflow

    In my application, I have QTableWidget displaying multiple rows, a line edit to enter a string and a push button. The requirement says, upon clicking on the push button, the same QTableWidget …

  7. C++ Qt - Setting QTableWidget items values - Stack Overflow

    May 11, 2016 · C++ Qt - Setting QTableWidget items values Asked 9 years, 8 months ago Modified 9 years, 8 months ago Viewed 9k times

  8. qt - Drag and drop rows within QTableWidget - Stack Overflow

    Oct 7, 2014 · Goal My goal is to have a QTableWidget in which the user can drag/drop rows internally. That is, the user can drag and drop one entire row, moving it up or down in the table …

  9. Setting the model to a QTableWidget - Stack Overflow

    Jul 16, 2009 · 1 QTableWidget:Details The QTableWidget class provides an item-based table view with a default model. Table widgets provide standard table display facilities for …

  10. qt - add custom widget to QTableWidget cell - Stack Overflow

    Feb 15, 2016 · 5 I have custom widget made with qt designer and i want to add it to QTableWidget cell. But it doesn't work. Here is the code :