-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui-parentcontrol.Rmd
49 lines (33 loc) · 1.69 KB
/
ui-parentcontrol.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
title: "ParentControl"
output: html_document
---
**This control type is abstract and can not be used directly.**
##Properties
A control that inherits from a `ParentControl` supports the embedding of child controls through the `children` property.
Property | Description | Form |
------------- | ------------------------------------------| -------------------- |
`children` | An array of control definitions that are to be embedded into the parent control. | Array of valid Controls
If the control is also a Display Control (e.i. `RadioButton` or `CheckBox`) another property is available.
Property | Description | Form |
------------- | ------------------------------------------| -------------------- |
`style` | Sets the layout position of child controls relative the parent | *enum*: list, inline, list-inline, inline-list
###Further Details
####`style`
- `list`: Children are placed below the parent in a vertical list.
- `inline`: Children are placed to the right of the parent in a horizontal list.
- `list-inline`: Children are placed below the parent in a horizontal list.
- `inline-list`: Children are placed to the right of the parent in a vertical list.
##Controls
Below is a list of controls that inherit from `ParentControl`.
###Layout Controls
- [LayoutBox](ui-layoutbox.html)
- [CollapseBox](ui-collapsebox.html)
- [Supplier](ui-supplier.html)
- [VariableSupplier](ui-variablesupplier.html)
- [TargetLayoutBox](ui-targetlayoutbox.html)
####Parent Controls
- [CheckBox](ui-checkbox.html)
- [RadioButton](ui-radiobutton.html)
- [Label](ui-label.html)
-------------------------------------