I am using this code
<table class="table table-striped b-t b-b patient-search-table"
ui-jp="dataTable" ui-option='{"emptyTable": "My Custom Message On
Empty Table"}'>
<tr><th>Name</th></tr>
<tr ng-repeat="user in users">
<td class="text-capitalize">{{user.name}}</td>
</tr>
So, how to show empty message in datatable, If no data found in angularjs.
<div ng-hide="users.length">No Data Found</div>ui-option. thanks a lot