B4J Question Loop through B4XRadioButton's in pane

GuidoVL

Member
How can I loop through B4XRadioButton's in a Pane.
The application is in B4XPages Class Modules.
Although the radiobuttons work fine in the following code, none is detected.

B4J:
For Each v As B4XView In pnlSpelers.GetAllViewsRecursive
        If v Is B4XRadioButton Then
            Log("Radio Button")
        End If
Next
 
Top