@jared-wiltshire Hi Jared, I have another question about this radio buttons, I have a page where I have all the set points, and also the buttons to change the temperature from degree C to degree F but the temperature will be in another page.
So, I will have this code in settings page:
<md-radio-group id="04ddd7d4-b182-4bc1-ace1-92d5cd8bea81" style="position: absolute; left: 236.047px; top: 0px;" ng-model="useF" ng-init="useF = true" layout>
<md-radio-button ng-value="false">°C</md-radio-button>
<md-radio-button ng-value="true">°F</md-radio-button>
</md-radio-group>
And this code to another page:
<div style="position: absolute; left: 275px; top: 40px; height: 25px; width: auto;">
<span ng-if="!useF">{{CHW_Return_Temp.value | number:2}} °C</span>
<span ng-if="useF">{{CHW_Return_Temp.value * 1.8 + 32 | number:2}} °F</span>
</div>
But this doesn't work, so how can I link the useF from ng-if to the useF from ng-model which is in another page?