i have a question on how to get variables set in my controller in a html tag?
Example:
<table class="table table-striped table-bordered table-hover" ng-hide="checked">
The ng-hide should be a variable. In my controller i have:
$scope.checked = "checked";
How to use the variable in the above example?
<table class="table table-striped table-bordered table-hover" ng-hide="{{ checked }}">
Doesnt work.
ng-hide="checked == 'checked'"