I have wxListCtrl in wxLC_REPORT style. I want to update the content of some parts of the list items using the call to SetStringItem(index, column, string).
This works fine with all index except 0 (the first entry). Such a call does not update the control. The old text still shows.
I am using Python 2.0 with wxPython 2.2.5 on a Windows NT machine.
Is this a known bug???
Is there a way to force the control to update it contents?
Is it possible that the field editor is active, while the data is being
updated. The table, I believe consists of two components, the cell
itself,
and the field editor on top of it. Do you have the problem updating cell
0, when
you are say .... editing cell 1.
Kevin
Joerg Hackenberg wrote:
···
Dear all,
I have wxListCtrl in wxLC_REPORT style. I want to update the content of some parts of the list items using the call to SetStringItem(index, column, string).
This works fine with all index except 0 (the first entry). Such a call does not update the control. The old text still shows.
I am using Python 2.0 with wxPython 2.2.5 on a Windows NT machine.
Is this a known bug???
Is there a way to force the control to update it contents?