Pandas df in editable QTableView: remove check boxes
问题 I have a pandas dataframe that I would like to present in a QtableView and make it editable. I have create the below model, but for some reason the output has checkboxes in every field. How can I get rid of them? The outout looks like this: And this this is the model that is used to make the pandas dataframe shown in a qtavleview and make it editable (I'm using PySide) class PandasModelEditable(QtCore.QAbstractTableModel): def __init__(self, data, parent=None): QtCore.QAbstractTableModel._