Hi,
I have a method to total columns in my "OnCellChange" method for the grid. I
assume this is similar to what you are wanting. I can get the cell with the
following code:
value = self.GetCellValue(evt.GetRow(), evt.GetCol())
Then you can pass that into another function and use the SetCellValue after
the calculation. I don't have flicker with this.
Hope that helps.
Mike
···
-----Original Message-----
From: Eli Golovinsky [mailto:gooli@tuzig.com]
Sent: Sunday, January 28, 2007 5:15 PM
To: wxPython-users@lists.wxwidgets.org
Subject: Updating one cell in wx.Grid
Does anybody know how can I cause a single cell to redraw itself using the
updated data in the underlying GridDataTable?
I've been using Refresh on each update (it's the progress grid again) and it
flickers like hell.
Any ideas?