I’ve created a custom look and feel for a list of ion-radio items
<ion-radio ng-repeat="item in clientSideList"
ng-value="item.value"
ng-model="data.serverSide"
ng-change="serverSideChange(item)"
required>
{{ item.text }}
</ion-radio>
But I can’t seem to get rid of the checkbox that appears whenever a user clicks an item
I notice that the ion-checkbox icon is being inserted into the DOM by the ionic library itself. So how can I override this? Do I have to remove the directive from the DOM using Javascript? I’d love some help if figuring this out. Many thanks!