Python Forum
Change color of a row of a QTableView?
Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Change color of a row of a QTableView?
#5
I subclassed it:

class ColorfullSqlQueryModel(QtSql.QSqlQueryModel):
   def __init__(self, dbcursor=None):
       super(ColorfullSqlQueryModel, self).__init__()

   def data(self, QModelIndex, role=None):
       v = QtSql.QSqlQueryModel.data(self, QModelIndex, role);
       if role == QtCore.Qt.BackgroundRole:
           return QtGui.QColor(QtCore.Qt.yellow)
       return (v);
It works!! Turns all rows to yellow!
But how can I make it paint only the rows I want?
How can I pass the color to function data?
Reply


Messages In This Thread
Change color of a row of a QTableView? - by panoss - May-24-2017, 05:21 PM
RE: Change color of a row of a QTableView? - by panoss - May-29-2017, 03:48 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [PyQt] PyQt5 QTableView SQLite : edit cell HeinKurz 2 2,485 Mar-27-2023, 10:41 AM
Last Post: HeinKurz
  [PyQt] QStyledItemDelegate and QTableView malonn 1 1,695 Feb-07-2023, 07:15 PM
Last Post: malonn
  [PyQt] QTableView set header labels HeinKurz 2 7,073 Jan-23-2023, 08:46 AM
Last Post: HeinKurz
  [PyQt] Determine whether text in QTableView cell is fully visible or not random_nick 0 1,019 Oct-27-2022, 09:29 PM
Last Post: random_nick
  [PyQt] QTableView: scroll to top cell of the screen random_nick 2 2,935 Oct-08-2022, 12:29 AM
Last Post: random_nick
  [PyQt] [Solved]Add a Blank Row To QTableView Extra 3 5,697 Oct-02-2022, 04:53 PM
Last Post: Extra
  [PyQt] [Solved]Change text color of one line in TextBrowser Extra 2 5,005 Aug-23-2022, 09:11 PM
Last Post: Extra
  Tkinter - How can I change the default Notebook border color? TurboC 5 14,895 May-23-2022, 03:44 PM
Last Post: bigmac
Question [Tkinter] Change Treeview column color? water 3 9,768 Mar-04-2022, 11:20 AM
Last Post: Larz60+
  Can't get tkinter button to change color based on changes in data dford 4 3,494 Feb-13-2022, 01:57 PM
Last Post: dford

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020