You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api.md
+67-1Lines changed: 67 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ widget or get your hand on its **proxymanager** to manage its proxies.
12
12
13
13
## Simput manager
14
14
15
-
The simput manager instance let you do the following:
15
+
The simput manager instance lets you do the following:
16
16
- Access its linked **proxymanager**
17
17
- Reset cached UI layout elements by calling **clear_ui()**
18
18
- Load definitions, language and UI by calling one of the following methods
@@ -298,6 +298,72 @@ def hints(self):
298
298
"""Return a set of (level, message) when running the validation for the info level"""
299
299
```
300
300
301
+
## UI Widgets
302
+
303
+
### Simput Widget
304
+
305
+
The `Simput` widget is a trame component that is used as the UI data management provider.
306
+
This component must be registered as the root of the layout with the `register_layout(layout)` method (preferred method) or by setting `layout.root = simput_widget`.
307
+
308
+
```python
309
+
@property
310
+
defhelper(self):
311
+
"""Simput helper object"""
312
+
313
+
defapply(self, **kwargs):
314
+
"""Flush modified properties so they can be pushed to their concrete objects"""
0 commit comments