Edit - Modal (Nested Tab)
Edit through a Modal Form with nested tab
HIDE CODE
<?php
$xcrud = Xcrud::get_instance();
$xcrud->table('orders');
$xcrud->default_tab('Order info');
$xcrud->columns('orderDate,requiredDate,status,comments,customerNumber');
$xcrud->fields_arrange('orderDate,requiredDate,shippedDate','Dates',true);
$xcrud->fields_arrange('status,customerNumber','Customer',true);
$xcrud->fields_arrange('comments','Other Info',true);
$orderdetails = $xcrud->nested_table('Order details','orderNumber','orderdetails','orderNumber'); // 2nd level
$orderdetails->columns('productCode,quantityOrdered,priceEach');
$orderdetails->fields_arrange('productCode','Product',true);
$orderdetails->fields_arrange('quantityOrdered,priceEach','Quantity',true);
$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');
$products->is_edit_modal(true);
$productLines = $products->nested_table('Product Lines','productLine','productlines','productLine'); // 4th level
$xcrud->is_edit_modal(true);
echo $xcrud->render();
?>
Orders
| # | Orderdate | Requireddate | Status | Comments | Customernumber | |
|---|---|---|---|---|---|---|
| 1 | 06.11.2003 00:00:00 | 14.11.2003 00:00:00 | Shipped | jnjnkjnkjnkn | 324 | View Edit Remove |
| 2 | 06.11.2003 00:00:00 | 15.11.2003 00:00:00 | Shipped | 386 | View Edit Remove | |
| 3 | 08.11.2003 00:00:00 | 16.11.2003 00:00:00 | Shipped | Custom shipping instructions sent to warehouse | 242 | View Edit Remove |
| 4 | 12.11.2003 00:00:00 | 19.11.2003 00:00:00 | Shipped | 167 | View Edit Remove | |
| 5 | 12.11.2003 00:00:00 | 21.11.2003 00:00:00 | Shipped | 124 | View Edit Remove | |
| 6 | 13.11.2003 00:00:00 | 22.11.2003 00:00:00 | Shipped | We need to keep in close contact with their | 339 | View Edit Remove |
| 7 | 14.11.2003 00:00:00 | 22.11.2003 00:00:00 | Shipped | 484 | View Edit Remove | |
| 8 | 14.11.2003 00:00:00 | 21.11.2003 00:00:00 | Shipped | 320 | View Edit Remove | |
| 9 | 14.11.2003 00:00:00 | 20.11.2003 00:00:00 | Shipped | 888 They want to reevaluate their terms agreement | 489 | View Edit Remove |
| 10 | 15.11.2003 00:00:00 | 24.11.2003 00:00:00 | Shipped | 211 | View Edit Remove |