Combos allows user input through specified options.
-
Mom
-
Dad
-
Brother
-
Sister
// create combo Dim combo1 As ABMCombo combo1.Initialize(page, "combo1", "Select a person", 650, "") combo1.IconName = "mdi-action-account-circle" // add items combo1.AddItem("combo1S1", "Mom", BuildSimpleItem("S1", "mdi-action-account-circle", "{NBSP}{NBSP}Mom")) combo1.AddItem("combo1S2", "Dad", BuildSimpleItem("S2", "mdi-action-account-circle", "{NBSP}{NBSP}Dad")) combo1.AddItem("combo1S3", "Brother", BuildSimpleItem("S3", "mdi-action-dashboard", "{NBSP}{NBSP}Brother")) combo1.AddItem("combo1S4", "Sister", BuildSimpleItem("S4", "mdi-action-dashboard", "{NBSP}{NBSP}Sister")) page.cell(2,1).AddComponent(combo1)
Combos can also have more complex layouts.
-
Mom
The loving one
-
Dad
The strong one
-
Brother
My best friend
-
Sister
The annoying one