You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of the problem: I created an Editable ListControl, when edit a field I want to catch the changement string (=text). This is done in a eventhandler OnMixUpdate() triggered by wx.EVT_LIST_END_LABEL_EDIT . With event.GetItem() I access the correct listItem but when I do Getext() it returns an empty string. Also wxPyDeprecationWarning is given on listctrl.py:655
Operating system: Windows-7-6.1.7601-SP1
wxPython version: 4.0.0rc1.dev3456+e141c95
Python version: 2.7.13
Description of the problem: I created an Editable ListControl, when edit a field I want to catch the changement string (=text). This is done in a eventhandler OnMixUpdate() triggered by wx.EVT_LIST_END_LABEL_EDIT . With event.GetItem() I access the correct listItem but when I do Getext() it returns an empty string. Also wxPyDeprecationWarning is given on listctrl.py:655
Output: (I changed 911 to 9110):
sys.version_info(major=2, minor=7, micro=13, releaselevel='final', serial=0)
Windows-7-6.1.7601-SP1
wxversion: 4.0.0rc1.dev3456+e141c95
<class 'wx._core.ListItem'>
COL ID:1 ROW ID:2 ROW OLD:911 NEW:
C:\Python27\lib\site-packages\wx\lib\mixins\listctrl.py:655: wxPyDeprecationWarning: Call to deprecated item. Use SetItem instead.
self.SetStringItem(self.curRow, self.curCol, text)
The text was updated successfully, but these errors were encountered: