-
Notifications
You must be signed in to change notification settings - Fork 0
Combobox
NickWare edited this page Dec 27, 2021
·
1 revision
The Combobox control HTML model:
<div class="Combobox Rounded" data-comboboxname="C1">
<div class="ComboboxHeader"><div>Choose an item</div></div>
<ul>
<li>Item1</li>
<li>Item2</li>
<li>Item3</li>
</ul>
</div>
JS:
facefull.Comboboxes["C1"].getState();
facefull.Comboboxes["C1"].setState(1);
facefull.Comboboxes["C1"].doClear();
facefull.Comboboxes["C1"].doAddItem("Item 1");