-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
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
tree does not support mode #2279
Conversation
resolves #2278
Coverage report for
|
St.❔ |
Category | Percentage | Covered / Total |
---|---|---|---|
🔴 | Statements | 52.08% | 263/505 |
🔴 | Branches | 21.75% | 67/308 |
🔴 | Functions | 14.66% | 17/116 |
🔴 | Lines | 53.42% | 242/453 |
Test suite run success
7 tests passing in 1 suite.
Report generated by 🧪jest coverage report action from 84681c0
Coverage report for
|
St.❔ |
Category | Percentage | Covered / Total |
---|---|---|---|
🟢 | Statements | 87.49% | 3454/3948 |
🟡 | Branches | 69.41% | 2362/3403 |
🟢 | Functions | 83.2% | 639/768 |
🟢 | Lines | 87.97% | 3197/3634 |
Test suite run success
698 tests passing in 47 suites.
Report generated by 🧪jest coverage report action from 84681c0
☂️ Python Coverage
Overall Coverage
New FilesNo new covered files... Modified Files
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😶
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ez one for you
Hi Guys . The dropdown also is not working like <|..|selector|dropdown=True|> |
x = ""
lov = [
{
"id": "1",
"label": "P",
"children": [
{"id": "1.2", "label": "C1", "children": []},
{"id": "1.3", "label": "C2", "children": []}
],
},
{
"id": "2",
"label": "q",
"children": [
{"id": "2.2", "label": "Q1", "children": []},
{"id": "2.3", "label": "Q2", "children": []}
],
},
]
with tgb.Page() as root:
tgb.text("Here's a Tree:")
tgb.tree("{x}", mode="check", lov="{lov}")
tgb.text("Here's a Selector:")
tgb.selector("{x}", mode="check", lov="{lov}")
if __name__ == "__main__":
Gui(root).run(title="2278 [🐛 BUG] The checkbox / radio mode does not work in tree view") The drop down true keeps all of them active |
resolves #2278
What type of PR is this? (check all applicable)
Description
Tree does not support property
mode
Related Tickets & Documents
How to reproduce the issue