Skip to content Skip to sidebar Skip to footer

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 f

Solution 1:

You are returning the wrong default values from data and setaData. The former should return None (so you could just remove the last line), whilst the latter should return False.


Post a Comment for "Pandas Df In Editable Qtableview: Remove Check Boxes"