2020-09-09 22:17:46 +02:00
|
|
|
import {CheckBoxes} from "./UI/Input/Checkboxes";
|
|
|
|
import {FixedInputElement} from "./UI/Input/FixedInputElement";
|
|
|
|
import {VariableUiElement} from "./UI/Base/VariableUIElement";
|
2020-08-31 02:59:47 +02:00
|
|
|
|
2020-09-02 11:37:34 +02:00
|
|
|
|
2020-09-09 22:17:46 +02:00
|
|
|
const cb = new CheckBoxes(
|
|
|
|
[ new FixedInputElement("One", 1),
|
|
|
|
new FixedInputElement("Two",2),
|
|
|
|
new FixedInputElement("Thee",3)]
|
|
|
|
)
|
|
|
|
|
|
|
|
cb.AttachTo("maindiv");
|
|
|
|
new VariableUiElement(cb.GetValue().map(ts => ts?.join(", "))).AttachTo("extradiv")
|
|
|
|
|
|
|
|
window.setTimeout(() => {
|
|
|
|
cb.GetValue().setData([2,3]);
|
|
|
|
}, 2500)
|
|
|
|
|
|
|
|
window.setTimeout(() => {
|
|
|
|
cb.GetValue().setData([2]);
|
|
|
|
}, 3000)
|
|
|
|
|
|
|
|
window.setTimeout(() => {
|
|
|
|
cb.GetValue().setData([1, 2]);
|
|
|
|
}, 3500)
|