DEMO SITE v1.7.26

UI/UX callbacks NEW Semantic UI 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 NameCustomernumberOrderdateShippeddateStatus
Actions
1
O
Online Diecast Creations Co.
36323 years ago30.07.2020 00:00:00Shipped View Edit Remove
2
B
Blauer See Auto, Co.
12823 years ago25.01.2003 00:00:00Completed View Edit Remove
3
V
Vitachrome Inc.
18123 years ago14.01.2003 00:00:00Shipped View Edit Remove
4
B
Baane Mini Imports
12123 years ago02.02.2003 00:00:00Shipped View Edit Remove
5
E
Euro+ Shopping Channel
14123 years ago01.02.2003 00:00:00Shipped View Edit Remove
6
D
Danish Wholesale Imports
14523 years ago12.02.2003 00:00:00Shipped View Edit Remove
7
R
Rovelli Gifts
27823 years ago21.02.2003 00:00:00Shipped View Edit Remove
8
L
Land of Toys Inc.
13123 years ago26.02.2003 00:00:00Shipped View Edit Remove
9
C
Cruz & Sons Co.
38523 years ago08.03.2003 00:00:00Shipped View Edit Remove
10
M
Motor Mint Distributors Inc.
48623 years ago11.03.2003 00:00:00Shipped View Edit Remove
Search Execution time: 0.005 sMemory usage: 0.25 MB