From 282ae992b05402742df96a5e19a9d1d26e6fb68e Mon Sep 17 00:00:00 2001 From: namnguyen Date: Fri, 6 Dec 2024 14:59:57 +0700 Subject: [PATCH] wording --- docs/userman/gui/extension/extension_list_of_values.md | 4 +--- docs/userman/gui/extension/extension_tabular_data.md | 5 ++--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/userman/gui/extension/extension_list_of_values.md b/docs/userman/gui/extension/extension_list_of_values.md index 91b0eb9b3..f950ec620 100644 --- a/docs/userman/gui/extension/extension_list_of_values.md +++ b/docs/userman/gui/extension/extension_list_of_values.md @@ -8,9 +8,7 @@ that any changes to the list automatically refresh the display. In this section, we'll design a visual component that represents a list of programming languages. Each language will be displayed with its name and an icon. -This component will take a property containing a list of values and render them as a list. -When a Python variable is bound to this property, any updates to the variable will instantly reflect in the displayed list, -enabling real-time synchronization. +This visual element will take a property containing a list of values and render them as a list. ## Declaring the element {data-source="gui:doc/extension/example_library/example_library.py#L52"} diff --git a/docs/userman/gui/extension/extension_tabular_data.md b/docs/userman/gui/extension/extension_tabular_data.md index 4b1919ab9..f1ee866b6 100644 --- a/docs/userman/gui/extension/extension_tabular_data.md +++ b/docs/userman/gui/extension/extension_tabular_data.md @@ -25,9 +25,8 @@ this approach. In this section, we will expand the dynamic element library, initially created in the [Scalar properties](dynamic_element/scalar_props.md) section, by adding a chessboard element. -This element will accept a property containing the state of a chess game -and display it as a visually interactive chessboard. When a Python variable is bound to this property, -updates to the variable will immediately update the chessboard displayed on the page, ensuring real-time synchronization. +This visual element will take a property representing the state of a chess game, +structured as tabular data, and render it as an interactive chessboard. ## Declaring a dynamic element {data-source="gui:doc/extension/example_library/example_library.py#L43"} Starting from the code mentioned above, here is how you would declare this new element: