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

Added Feature Cover Json Data Node in Data Node control #2164

Open
wants to merge 23 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d11f920
Added Feature Cover Json Data Node in Data Node control
THEBOSS0369 Oct 26, 2024
7daba5e
fixed the requested changes
THEBOSS0369 Oct 29, 2024
00272c1
Adding example file
THEBOSS0369 Oct 31, 2024
6e8b61d
Fixed the requested Changes
THEBOSS0369 Nov 1, 2024
130e3ab
fixing linter error
THEBOSS0369 Nov 1, 2024
f67ca36
added the code in display mode
THEBOSS0369 Nov 1, 2024
0ecf83d
added new library
THEBOSS0369 Nov 3, 2024
1570969
Moved importation of library in single file
THEBOSS0369 Nov 4, 2024
4d18b03
removing uncesseary lines
THEBOSS0369 Nov 4, 2024
9348932
Update package.json
THEBOSS0369 Nov 4, 2024
71648be
Update DataNodeViewer.tsx
THEBOSS0369 Nov 4, 2024
e18b234
Update package.json
THEBOSS0369 Nov 4, 2024
76fbae0
Merge branch 'develop' into feature/#1248-cover-json-data-node-contro…
THEBOSS0369 Nov 4, 2024
7dac175
Update DataNodeViewer.tsx
THEBOSS0369 Nov 4, 2024
39e60ae
fixing tests
THEBOSS0369 Nov 7, 2024
97702a9
fixing failing tests again
THEBOSS0369 Nov 7, 2024
3187dc9
Added theme and done some requested changes
THEBOSS0369 Nov 8, 2024
aefaa53
Merge branch 'develop' into feature/#1248-cover-json-data-node-contro…
FredLL-Avaiga Nov 8, 2024
69aa1ed
Update DataNodeViewer.tsx
THEBOSS0369 Nov 8, 2024
319be7b
Update DataNodeViewer.tsx
THEBOSS0369 Nov 8, 2024
53cbc0e
Merge branch 'develop' into feature/#1248-cover-json-data-node-contro…
THEBOSS0369 Nov 8, 2024
5a070a7
Update package-lock.json
THEBOSS0369 Nov 8, 2024
48463fe
Merge branch 'develop' into feature/#1248-cover-json-data-node-contro…
FredLL-Avaiga Nov 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions doc/gui/examples/controls/datanode_viewer_json.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import taipy as tp
import taipy.gui.builder as tgb
from taipy import Config, Orchestrator, Scope
from taipy.gui import Gui

json_config_node = Config.configure_json_data_node(
id="json_node",
default_path="./demo-1248-dn.json",
scope=Scope.GLOBAL,
)

with tgb.Page() as data_node_viewer:
tgb.data_node(
data_node="{json_data_node}"
)

gui = Gui(page=data_node_viewer)

if __name__ == "__main__":
Orchestrator().run()
json_data_node = tp.create_global_data_node(json_config_node)
gui.run(title="Datanode Viewer - json support")
Loading
Loading