I am using wxPython ObjectListView and it is very easy to use. Now I need to render a wx.Color as a column but I haven't found a way in the documentation. Basically I have list of items each of them have the following attributes: name, surname and hair color. Hair color is a RGB color and I would like to show it as a column in my ObjectListView.
Is there a way to do it ? Many thanks
The answer appears to be No. The closest thing I could find was the following piece of documentation:
However, this would only allow you to change the first column's background color. I attempted to do just that and that did not work either. You might want to take a look at the UltimateListctrl, which is a custom widget. Unfortunately, it's API is not the same as OLV.