Hola, buenas días, tengo un problema con un combo agregado en un modal sheet, lo declaro, inicio y agrego los items pero siempre queda vacío. Este es el codigo de como lo estoy declarando e inicializando. Que me falta por hacer?
Muchas gracias.
Hello, good morning, I have a problem with a combo added in a modal sheet, I declare it, initialize and add the items but it always remains empty. This is the code of how I am declaring and initializing it. What do I need to do?
Thank you so much.
Muchas gracias.
Hello, good morning, I have a problem with a combo added in a modal sheet, I declare it, initialize and add the items but it always remains empty. This is the code of how I am declaring and initializing it. What do I need to do?
Thank you so much.
code:
'create combo
Dim combo1 As ABMCombo
combo1.Initialize(page, "combo1", "Comarca", 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"))
modal.Content.Cell(3,3).AddComponent(combo1)