My directive has
link: function ($scope, $elm, $attrs) { var status = $scope.item.status if (status) { var statusName = status.name,
You would set ng-disabled to a scope variable, ex:
ng-disabled
And then inside your directive you can set that variable:
$scope.isDisabled = true;