function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Flint LockwoodFlint Lockwood 

ui:inputRadio Gets Unchecked

I have a Lightning page that displays a list of Opportunity by stage for a given Account. Users can select an Opportunity on the page. However, the radio button that gets selected never sticks (i.e. the selected Opportunity once the user navigates to another tab). Not sure why this is happening. 
<aura:iteration items="{!v.stagename}" var="stage">
<lightning:tabset>
<lightning:tab label="{!stage}">
<aura:iteration items="{!opportunityList}" var="oppty">
<ui:inputRadio name="selectOppty"/>
<ui:outputText value="{!oppty.Name}"/>
</aura:iteration>
</lighting:tab>
</lightning:tabset>
</aura:iteration>
Please note that the above code is abbreviated.