UI/UX callbacks NEW Bootstrap 5 theme
Make a decent UI/UX
HIDE CODE
<style>
.label{
padding: 7px;
color: #fff;
border-radius: 4px;
}
</style>
<?php
$xcrud = Xcrud::get_instance();
$xcrud->table('orders');
$xcrud->default_tab('Order info');
$xcrud->parsley_active(true);
//Make extension mandatory
$xcrud->columns("Customer Name,customerNumber,orderDate,shippedDate,status");
$xcrud->subselect('Customer Name','SELECT customerName FROM customers WHERE customerNumber = {customerNumber}');
$xcrud->column_callback("orderDate","timeAgo");
$xcrud->column_callback("Customer Name","getAvatar");
$xcrud->column_callback("status","getStatusLabel");
$xcrud->set_attr('comments',array('required'=>'required'));
$xcrud->set_lang("add","Create Order");
$orderdetails = $xcrud->nested_table('Order details','orderNumber','orderdetails','orderNumber'); // 2nd level
$orderdetails->columns('productCode,quantityOrdered,priceEach');
$orderdetails->fields('productCode,quantityOrdered,priceEach');
$orderdetails->default_tab('Detail information');
$customers = $xcrud->nested_table('Customers','customerNumber','customers','customerNumber'); // 2nd level 2
$customers->columns('customerName,city,country');
$products = $orderdetails->nested_table('Products','productCode','products','productCode'); // 3rd level
$products->default_tab('Product details');
$productLines = $products->nested_table('Product Lines','productLine','productlines','productLine'); // 4th level
echo $xcrud->render();
?>
Orders
| # | Customer Name | Customernumber | Orderdate | Shippeddate | Status | |
|---|---|---|---|---|---|---|
| 1 | O Online Diecast Creations Co. | 363 | 23 years ago | 30.07.2020 00:00:00 | Shipped | View Edit Remove |
| 2 | B Blauer See Auto, Co. | 128 | 23 years ago | 25.01.2003 00:00:00 | Completed | View Edit Remove |
| 3 | V Vitachrome Inc. | 181 | 23 years ago | 14.01.2003 00:00:00 | Shipped | View Edit Remove |
| 4 | B Baane Mini Imports | 121 | 23 years ago | 02.02.2003 00:00:00 | Shipped | View Edit Remove |
| 5 | E Euro+ Shopping Channel | 141 | 23 years ago | 01.02.2003 00:00:00 | Shipped | View Edit Remove |
| 6 | D Danish Wholesale Imports | 145 | 23 years ago | 12.02.2003 00:00:00 | Shipped | View Edit Remove |
| 7 | R Rovelli Gifts | 278 | 23 years ago | 21.02.2003 00:00:00 | Shipped | View Edit Remove |
| 8 | L Land of Toys Inc. | 131 | 23 years ago | 26.02.2003 00:00:00 | Shipped | View Edit Remove |
| 9 | C Cruz & Sons Co. | 385 | 23 years ago | 08.03.2003 00:00:00 | Shipped | View Edit Remove |
| 10 | M Motor Mint Distributors Inc. | 486 | 23 years ago | 11.03.2003 00:00:00 | Shipped | View Edit Remove |