tags:

views:

16

answers:

0

I have defined a wx.ListCtrl.

class FileList(wxw.ListCtrl, CheckListCtrlMixin, ListCtrlAutoWidthMixin): 
 style = wx.LC_REPORT | wx.BORDER_NONE | wx.LC_SORT_ASCENDING | \
 wx.LC_VRULES | wx.LC_HRULES | wx.LC_SINGLE_SEL | wx.LC_EDIT_LABELS 
 sizerProportion = 1
 sizerFlag = wx.EXPAND):
     pass

I want a specific column to be editable (3rd column of the row). Is there a way to do that? Any help will be highly appreciated.

Thanks