is it possible to write the following code using the ng-if directive insteade of ng-show?
<tbody data-ng-repeat="storedata in storedata.data">
<tr class="table_row_{{childItem}}">
<td class="table_col1" >
<div ng-show="!storedata.hideButtons" class="btn-group pull-right">
<button type="button" class="btn btn-default" aria-label="Edit" ng-click="openStore(storedata.storeId, storedata)"><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span></button>
<button type="button" class="btn btn-default" aria-label="New" ng-click="openStore(storedata.storeId)"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
</div>
</td>