We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to get the value of selected with double clicked branch in tree? How to make this double click function in appJar?
The text was updated successfully, but these errors were encountered:
The tree is still a little buggy...
tree
You could try this code:
from appJar import gui def click(tree, id): print(app.getTreeSelectedXML(tree)) with gui() as app: app.addTree("t1", """<people> <person><name>Fred</name><age>45</age><gender>Male</gender></person> <person><name>Tina</name><age>37</age><gender>Female</gender></person> <person><name>CLive</name><age>28</age><gender>Male</gender></person> <person><name>Betty</name><age>51</age><gender>Female</gender></person> </people>""") app.setTreeDoubleClickFunction('t1', click)
Sorry, something went wrong.
No branches or pull requests
How to get the value of selected with double clicked branch in tree? How to make this double click function in appJar?
The text was updated successfully, but these errors were encountered: