I have hided an element using ng-hide. Then tried to show it using a function. but it is not showing..
<input type="button" class="btn btn-primary btn-sm margin-right-15 ng-hide" value=" Edits "
ng-click="EditValueSalComponent(T,p,K)" id="{{'in'+T.id}}"/>
<div ng-if="(p.id == K.emp_id && T.id == K.component_id)">
{{K.amount}}
<div ng-init="hideinputbox(T.id)"></div>
</div>
$scope.hideinputbox = function (k) {
$("input#in" +k).show();
}