06-08-2020 01:23 PM - edited 06-08-2020 01:43 PM
I am mocking up a radio group that looks like this:
I can get an EVENT_VAL_CHANGED when I click on the radio buttons, but I want to detect the status of the sub-checkbox items. I do not get an EVENT_COMMIT or EVENT_VAL_CHANGED when those are clicked.
I also am not sure how to read them. The Radio_ calls just give me Radio_(Get/Set)MarkedOption to read the index, which does not reflect those checkboxes.
Since this is a tree internally, I expect there is some way to reach into this object and get the status of a specific item.
EDIT: Using Values, I can see that I clicked one of the checkboxes, but I would still want to be able to read the state. I need to know which radio button is selected, and which of the check boxes is selected, somehow.
Suggestions on what to look up in the documentation would be appreciated.
06-08-2020 02:35 PM
From searching this forum, I have found:
IsListItemChecked (panel, PANEL_RADIOGROUP, 3, &checked);
I am exploring this right now to see if it will help me do what I am trying to do.