I want to do so:
ng-hide=\"!globals.isAdmin && mapping.is_default\"
but the expression evaluates always to false.
false
This will work if you do not have too many expressions.
Example: ng-show="form.type === 'Limited Company' || form.type === 'Limited Partnership'"
ng-show="form.type === 'Limited Company' || form.type === 'Limited Partnership'"
For any more expressions than this use a controller.