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

#OrderdateRequireddateStatusCommentsCustomernumber
Actions
129.03.2003 00:00:0019.03.2003 15:48:41ShippedCustomer requested that FedEx Ground is used for…486 View Edit Remove
218.03.2003 00:00:0024.03.2003 00:00:00Shipped187 View Edit Remove
325.03.2003 00:00:0031.03.2003 00:00:00Shipped129 View Edit Remove
424.03.2003 00:00:0003.04.2003 00:00:00ShippedCustomer requested that ad materials (such as…144 View Edit Remove
526.03.2003 00:00:0002.04.2003 00:00:00Shipped124 View Edit Remove
601.04.2003 00:00:0024.04.2003 00:00:00Shipped172 View Edit Remove
704.04.2003 00:00:0012.04.2003 00:00:00Shipped424 View Edit Remove
811.04.2003 00:00:0019.04.2003 00:00:00Shipped381 View Edit Remove
916.04.2003 00:00:0024.04.2003 00:00:00Shipped148 View Edit Remove
1021.04.2003 00:00:0029.04.2003 00:00:00ShippedCustomer has worked with some of our vendors in…216 View Edit Remove
Search