Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
I am not able to search, sort or paginate using angular code to display the data in datatable
Following is my code and also attached screenshot
<table class="table table-striped table-bordered" id="example-3">
<thead>
<tr class="replace-inputs">
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="user in allUsers">
<td>{{user.firstName}}</td>
<td>{{user.lastName}}</td>
</tr>
</tbody>
</table>
Hi Azhar,
Please update DataTables library to latest version because they have improved their API for searching the table:
This way it fill filter the results, you can refer to this article:
https://datatables.net/examples/api/multi_filter.html
Hopefully this will help you.