Hello!
I bind EVT_GRID_CELL_CHANGE like this:
wx.grid.EVT_GRID_CELL_CHANGE(self.mygrid, self.on_cell_change)
Is there any way to find out which cell was changed?
Thanks!
Hello!
I bind EVT_GRID_CELL_CHANGE like this:
wx.grid.EVT_GRID_CELL_CHANGE(self.mygrid, self.on_cell_change)
Is there any way to find out which cell was changed?
Thanks!
Event.Row and Event.Col
On Fri, Jan 29, 2010 at 9:37 AM, Cloud alexej.bazhenov@gmail.com wrote:
Hello!
I bind EVT_GRID_CELL_CHANGE like this:
wx.grid.EVT_GRID_CELL_CHANGE(self.mygrid, self.on_cell_change)
Is there any way to find out which cell was changed?
Thanks!
–
To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com
or visit http://groups.google.com/group/wxPython-users?hl=en
–
Best Regards,
Michael Moriarity
Thank you!