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 Name | Customernumber | Orderdate | Shippeddate | Status | |
---|---|---|---|---|---|---|
1 | C Corrida Auto Replicas, Ltd | 458 | 22 years ago | 02.06.2003 00:00:00 | Shipped | View Edit Remove |
2 | M Muscle Machine Inc | 151 | 22 years ago | 06.06.2003 00:00:00 | Not Shipped | View Edit Remove |
3 | E Euro+ Shopping Channel | 141 | 22 years ago | 11.06.2003 00:00:00 | Shipped | View Edit Remove |
4 | S Stylish Desk Decors, Co. | 324 | 22 years ago | 14.06.2003 00:00:00 | Shipped | View Edit Remove |
5 | A Auto-Moto Classics Inc. | 198 | 22 years ago | 21.06.2003 00:00:00 | Shipped | View Edit Remove |
6 | G Gift Ideas Corp. | 447 | 22 years ago | 21.06.2003 00:00:00 | Shipped | View Edit Remove |
7 | D Down Under Souveniers, Inc | 323 | 22 years ago | 28.06.2003 00:00:00 | Shipped | View Edit Remove |
8 | E Euro+ Shopping Channel | 141 | 22 years ago | 03.07.2003 00:00:00 | Shipped | View Edit Remove |
9 | L Lyon Souveniers | 250 | 22 years ago | 05.07.2003 00:00:00 | Shipped | View Edit Remove |
10 | M Mini Gifts Distributors Ltd. | 124 | 22 years ago | 03.07.2003 00:00:00 | Shipped | View Edit Remove |