Edit - Modal (Nested Tab) Bootstrap 4.5 theme
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 | 28.05.2003 00:00:00 | 07.06.2003 00:00:00 | Shipped | 458 | View Edit Remove | |
2 | 03.06.2003 00:00:00 | 09.06.2003 00:00:00 | Shipped | Customer requested special shippment. The | 151 | View Edit Remove |
3 | 06.06.2003 00:00:00 | 12.06.2003 00:00:00 | Shipped | 141 | View Edit Remove | |
4 | 12.06.2003 00:00:00 | 18.06.2003 00:00:00 | Shipped | 324 | View Edit Remove | |
5 | 16.06.2003 00:00:00 | 24.06.2003 00:00:00 | Shipped | 198 | View Edit Remove | |
6 | 16.06.2003 00:00:00 | 25.06.2003 00:00:00 | Shipped | 447 | View Edit Remove | |
7 | 25.06.2003 00:00:00 | 01.07.2003 00:00:00 | Shipped | 323 | View Edit Remove | |
8 | 27.06.2003 00:00:00 | 04.07.2003 00:00:00 | Shipped | 141 | View Edit Remove | |
9 | 01.07.2003 00:00:00 | 10.07.2003 00:00:00 | Shipped | 250 | View Edit Remove | |
10 | 02.07.2003 00:00:00 | 12.07.2003 00:00:00 | Shipped | 124 | View Edit Remove |