How to get parent of current node Angular UI Tree?

924 views Asked by At

I tried to do that like as:

$scope.showCloneIcon = function(scope)
        {

            if(scope.$parentNodeScope !== null){

                var parent_value = scope.$parentNodeScope.$modelValue.type_value;

                if(parent_value === 'array_objects'){
                    return true;
                }
            }

            return true;
        };

So, it does not hide element where I use ng-show

1

There are 1 answers

0
AudioBubble On BEST ANSWER

Please try this

$scope.showCloneIcon = function(scope)
{
  if(scope.$parent !== null)
  {
    var parent_value = scope.$parent.$modelValue.type_value;
    if(parent_value === 'array_objects')
    {
      return true;
    }
  }
  return true;
};