I want wxListCtrl in report mode and I want to lock one or more columns such that when you scroll left and right those columns remain visible at all times. For example:
| name | field1 | field2 | field3 |....|
When scrolled to the left I want it to be like:
| name | field3 | field 4 | ... |
I can't find a way to get this functionality.
I looked at wxGrid and it would if I set the row label to the name value, but first that's not exactly what is desired and second it makes the name non-editable. I need it to be editable.
There a way to get what I want?