I am trying to call a custom directive using the name from a JSON array instead of actually calling the directive directly. So, for example, I have a custom directive called AccessibilityRadio which dynamically creates radio buttons by using . I would like to use <{{field.customDirectiveName}}> and pull the value form the JSON array to call the custom directive. The problem is that when I do this I can only see the name of the custom directive on the browser access-bility-radio. So in my JSON array I have $scope.test.fields[{"customDirectiveName": "accessibility-radio"}] - something like that. I am trying to call a custom directive using th