I am using smart table in my application. The smart-table is configured with static headers and pagination bar. The data is loaded via async request. When the data received is empty the smart-table is shown with headers and pagination-bar. I want to show empty-text in between. I've read all the documentation but i didn't find any config that allows to set the empty text. How do i do it?
Below the
<tr ng-repeat="row in rowCollection"></tr>
Put another tr
with ng-if
or ng-show
directive when the data is empty.
<tr ng-if="rowCollection.length == 0">
// your message here
</tr>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With