Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VirtualTreeView: Edit next column

How can I configure a virtual tree view to edit the next column when user presses TAB?

+--------+-----------+
+ |1     + |2        +
+--------+-----------+
+        +           +
+--------+-----------+

Default behaviour is editing the next node/row:

+--------+-----------+
+ |1     +           +
+--------+-----------+
+ |2     +           +
+--------+-----------+
like image 634
jpfollenius Avatar asked Jul 20 '26 21:07

jpfollenius


1 Answers

I would suggest setting up the 'OnKeyPress' event and then manually directing the selected item in the treeview to the desired next item.

like image 134
James_Hill Avatar answered Jul 25 '26 17:07

James_Hill