Skip Menu |

This queue is for tickets about the Wx-TreeListCtrl CPAN distribution.

Report information
The Basics
Id: 54433
Status: rejected
Priority: 0/
Queue: Wx-TreeListCtrl

People
Owner: Nobody in particular
Requestors: CHORNY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.06
Fixed in: (no value)



Subject: wxTR_EDIT_LABELS is not working in example
I have added wxTR_EDIT_LABELS to MyTreeList::new parent "new" call in sample1.pl (example from dist), but I'm not able to edit tree item. -- Alexandr Ciornii, http://chorny.net
Hi, Try setting a column editable property to true. e.g. if you want the first column to be editable $control->SetColumnEditable(0,1); for the third column $control->SetColumnEditable(2,1); columns are zero based. Thanks