Hello.
I have a problem with ABCombo. I copied the DEMO ABMCombo is a project template and does not display the contents of my combo. The demo works in the template does not. Any suggestions?
https://zapodaj.net/fa47fb09b59d3.png.html
I have a problem with ABCombo. I copied the DEMO ABMCombo is a project template and does not display the contents of my combo. The demo works in the template does not. Any suggestions?
B4X:
Sub ConnectPage()
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(3,4).AddComponent(combo1)
Dim tytul As ABMLabel
tytul.Initialize(page,"tytul","WebApp GeoLok",ABM.SIZE_H1,True,"")
page.Cell(1,1).AddComponent(tytul)
....
End Sub
https://zapodaj.net/fa47fb09b59d3.png.html
Last edited: