HTML
<div ng-repeat="(key, value) in HrqQuestions| groupBy: 'fullquestion'">
<div style="" class="list card normal">
<div class="item item-body item-divider" style="font-size: 26px !important;background-color: #28a54c;color: white;">
<p style="font-size: 20px;line-height: 25px;color: white;">{{key}}</p>
</div>
<div ng-repeat="hrq in value">
<ion-item class="item-checkbox">
<label class="checkbox">
<input type="checkbox" ng-model="hrq.checked" ng-value="hrq.AnswerID" ng-click="selectedAnswer($index,HrqQuestions,hrq.AnswerID,hrq.Answer)" >
</label>
{{ hrq.Answer}}
</ion-item>
</div>
</div>
</div>
Json
{Answer:"White",AnswerID:967,answer_type:"RADIO",fullquestion:"Your Race",id:6}{Answer:"African American",AnswerID:968,answer_type:"RADIO",fullquestion:"Your Race",id:6}{Answer:"Asian",AnswerID:969,answer_type:"RADIO",fullquestion:"Your Race",id:6}
<div ng-repeat="(key, value) in HrqQuestions| groupBy: 'fullquestion'">
<div style="" class="list card normal">
<div class="item item-body item-divider" style="font-size: 26px !important;background-color: #28a54c;color: white;">
<p style="font-size: 20px;line-height: 25px;color: white;">{{key}}</p>
</div>
<div ng-repeat="hrq in value">
<ion-item class="item-checkbox">
<label class="checkbox">
<input type="checkbox" ng-model="hrq.checked" ng-value="hrq.AnswerID" ng-click="selectedAnswer($index,HrqQuestions,hrq.AnswerID,hrq.Answer)" >
</label>
{{ hrq.Answer}}
</ion-item>
</div>
</div>
</div>
Json
{Answer:"White",AnswerID:967,answer_type:"RADIO",fullquestion:"Your Race",id:6}{Answer:"African American",AnswerID:968,answer_type:"RADIO",fullquestion:"Your Race",id:6}{Answer:"Asian",AnswerID:969,answer_type:"RADIO",fullquestion:"Your Race",id:6}

