Nested tables
Example of table nesting
HIDE CODE
<?php $xcrud = Xcrud::get_instance(); $xcrud->table('orders'); $xcrud->default_tab('Order info'); $xcrud->parsley_active(true); //Make extension mandatory $xcrud->set_attr('comments',array('required'=>'required')); $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
# | Orderdate | Requireddate | Shippeddate | Status | Action | Comments | Customernumber | |
---|---|---|---|---|---|---|---|---|
1 | 11.09.2003 00:00:00 | 26.09.2003 00:00:00 | 21.09.2003 00:00:00 | Not Shipped | 0 | They want to reevaluate their terms agreement | 148 | View Edit Remove |
2 | 21.09.2003 00:00:00 | 30.09.2003 00:00:00 | 24.09.2003 00:00:00 | Shipped | 0 | 311 | View Edit Remove | |
3 | 10.10.2003 00:00:00 | 19.10.2003 00:00:00 | 16.10.2003 00:00:00 | Shipped | 0 | 321 | View Edit Remove | |
4 | 11.10.2003 00:00:00 | 17.10.2003 00:00:00 | 17.10.2003 00:00:00 | Shipped | 0 | 347 | View Edit Remove | |
5 | 17.10.2003 00:00:00 | 25.10.2003 00:00:00 | 20.10.2003 00:00:00 | Shipped | 0 | 227 | View Edit Remove | |
6 | 18.10.2003 00:00:00 | 26.10.2003 00:00:00 | 19.10.2003 00:00:00 | Shipped | 0 | 321 | View Edit Remove | |
7 | 20.10.2003 00:00:00 | 27.10.2003 00:00:00 | 24.10.2003 00:00:00 | Shipped | 0 | 424 | View Edit Remove | |
8 | 21.10.2003 00:00:00 | 30.10.2003 00:00:00 | 23.10.2003 00:00:00 | Resolved | 0 | This order was disputed, but resolved on | 452 | View Edit Remove |
9 | 22.10.2003 00:00:00 | 31.10.2003 00:00:00 | 26.12.2003 00:00:00 | Shipped | 0 | This order was on hold because customers's credit | 148 | View Edit Remove |
10 | 21.10.2003 00:00:00 | 30.10.2003 00:00:00 | 27.10.2003 00:00:00 | Shipped | 0 | 462 | View Edit Remove |