Hi,
I use the below given code to use a ABMRadioGroup in the page
Now my question is, which is the right event to detect whenever user changes/clicks the ABMRadioGroup ?
I would like to call a sub whenever the user changes the value in the ABMRadioGroup
Any help will be appreciated
I use the below given code to use a ABMRadioGroup in the page
B4X:
Dim rbgroup As ABMRadioGroup
rbgroup.Initialize( page, "rbgroup", "radio")
rbgroup.AddRadioButton("Male", True)
rbgroup.AddRadioButton("Female", True)
rbgroup.SetActive(0)
rbgroup.Title = "Sex"
page.Cell(1,1).AddComponent(rbgroup)
Now my question is, which is the right event to detect whenever user changes/clicks the ABMRadioGroup ?
I would like to call a sub whenever the user changes the value in the ABMRadioGroup
Any help will be appreciated
Last edited: