CodeIgniter4 DataTables Usage - Numbering
Table Customers
No | Name | Phone | City | Country | Postal Code |
---|
Note
This sample database is downloaded from : https://www.mysqltutorial.org/mysql-sample-database.aspx/
Controller
just call method
addNumbering()
after initializing.
use \Hermawan\DataTables\DataTable;
public function numbering()
{
$db = db_connect();
$customers = $db->table('customers')->select('customerName, phone, city, country, postalCode');
return DataTable::of($customers)->addNumbering()->toJson();
}
Javascript
$(document).ready(function() {
$('#table').DataTable({
processing: true,
serverSide: true,
ajax: '/ajax-datatable/numbering',
order: [],
columnDefs: [
{ targets: 0, orderable: false},
]
});
});
AJAX Response :
{
"draw": "1",
"recordsTotal": 122,
"recordsFiltered": 122,
"data": [
[
1,
"Atelier graphique",
"40.32.2555",
"Nantes",
"France",
"44000"
],
[
2,
"Signal Gift Stores",
"7025551838",
"Las Vegas",
"USA",
"83030"
],
[
3,
"Australian Collectors, Co.",
"03 9520 4555",
"Melbourne",
"Australia",
"3004"
],
[
4,
"La Rochelle Gifts",
"40.67.8555",
"Nantes",
"France",
"44000"
],
[
5,
"Baane Mini Imports",
"07-98 9555",
"Stavern",
"Norway",
"4110"
],
[
6,
"Mini Gifts Distributors Ltd.",
"4155551450",
"San Rafael",
"USA",
"97562"
],
[
7,
"Havel & Zbyszek Co",
"(26) 642-7555",
"Warszawa",
"Poland",
"01-012"
],
[
8,
"Blauer See Auto, Co.",
"+49 69 66 90 2555",
"Frankfurt",
"Germany",
"60528"
],
[
9,
"Mini Wheels Co.",
"6505555787",
"San Francisco",
"USA",
"94217"
],
[
10,
"Land of Toys Inc.",
"2125557818",
"NYC",
"USA",
"10022"
]
]
}