Skip to content
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

datanode properties load and refresh #2099

Merged
merged 1 commit into from
Oct 18, 2024

Conversation

FredLL-Avaiga
Copy link
Member

resolves #2088

import taipy as tp
import taipy.gui.builder as tgb
from taipy import Config, Orchestrator, Scope
from taipy.gui import Gui

bug_node = Config.configure_data_node(
    id="bug_node",
    default_data="bug",
    scope=Scope.GLOBAL,
)

with tgb.Page() as data_node_viewer:
    tgb.text("## Discovering Data Node viewers", mode="md")

    tgb.data_node(
        data_node="{bug_data_node}",
    )
bug_gui = Gui(page=data_node_viewer)

if __name__ == "__main__":
    orchestrator = Orchestrator()
    orchestrator.run()
    bug_data_node = tp.create_global_data_node(bug_node)
    bug_gui.run(title="2088 [🐛 BUG] Cannot add properties to Data Node with Data Node viewer")

@FredLL-Avaiga FredLL-Avaiga added Core Related to Taipy Core 🟥 Priority: Critical Must be addressed as soon as possible 🖰 GUI Related to GUI 💥Malfunction Addresses an identified problem. 📝Release Notes Impacts the Release Notes or the Documentation in general labels Oct 18, 2024
@FredLL-Avaiga FredLL-Avaiga self-assigned this Oct 18, 2024
Copy link
Contributor

☂️ Python Coverage

current status: ✅

Overall Coverage

Lines Covered Coverage Threshold Status
19105 16571 87% 0% 🟢

New Files

No new covered files...

Modified Files

File Coverage Status
taipy/gui_core/_context.py 52% 🟢
TOTAL 52% 🟢

updated for commit: 237b9e9 by action🐍

Copy link
Member

@FabienLelaquais FabienLelaquais left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job!

@FredLL-Avaiga FredLL-Avaiga merged commit f00ec30 into develop Oct 18, 2024
126 checks passed
@FredLL-Avaiga FredLL-Avaiga deleted the bug/#2088-datnode-viewer-properties branch October 18, 2024 20:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Core Related to Taipy Core 🖰 GUI Related to GUI 💥Malfunction Addresses an identified problem. 🟥 Priority: Critical Must be addressed as soon as possible 📝Release Notes Impacts the Release Notes or the Documentation in general
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[🐛 BUG] Cannot add properties to Data Node with Data Node viewer
2 participants