Reputation: 51
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
Upvotes: 1
Views: 929
Reputation:
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;
};
Upvotes: 1