I am writing a PySide2 application, I have a QTableWidget
in it filled almost totally with QTableWidgetItem
objects.
I would like to highlight several parts of text inside the QTableWidgetItem
s, I tried to setText("<b>hello</b>")
but I see it is not rendered, it appears verbatim.
Is there some way to do it or do I need to change QTableWidgetItem
with some other widget ?