Here is the input field for date:
<div class="input-group date">
<input type="text" class="form-control" id="datepicker" placeholder="dd/mm/yyyy" ng-model="abs.date">
</div>
The value in this field is updated based on the item selected in the smart table. The issue arises when the selected item displays a timestamp instead of "dd/mm/yyyy" format. How can I apply a filter to achieve the desired format without modifying the underlying $scope value?