I have an angular x-editable sample here where i am trying to show / hide a form control based on the status value like,
<div ng-show="user.status == '1'">
<span class="title">Show: </span>
<span editable-text="user.showfield" e-name="showfield">{{ user.showfield || 'empty' }}</span>
</div>
It will be shown only when i save the form. How can I make it show when changing the control field itself?