I have a ttk.Treeview widget with some rows of data. How do I set the focus to and select (highlight) a specified item?

tree.focus_set()

does nothing

tree.selection_set(0)

complains that: Item 0 not found, although the widget is plainly populated with more than zero items. Trying item 1 does no better.

EDIT: to select an item, find its id, then use tree.selection_set(id). Neither tree.focus(id) nor tree.focus_set(id) appears to do anything.

link|improve this question

79% accept rate
feedback

1 Answer

Note: I haven't worked with python.

Looking at this link, the focus method with optional parameter item, should highlight the node.

If not, look at selectmode option & set it to "browse".

link|improve this answer
focus doesn't seem to work. selection_set() wants an item id, not a position, which can be obtained when inserting or by iterating tree.get_children(). +1 for forcing me to re-read the docs. This get me highlight, but not focus. – foosion Oct 22 '11 at 21:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.