DEMO SITE v1.7.20

Inline Editing (Nested Tab) Bootstrap 4.5 theme

Do inline editing to tables inside tabs

HIDE CODE
<?php  
	$xcrud = Xcrud::get_instance();
    $xcrud->table('orders');
	$xcrud->fields_inline('orderNumber,orderDate,requiredDate,shippedDate,comments');//set the fields to allow inline editing
    $xcrud->default_tab('Order info');
    
    $orderdetails = $xcrud->nested_table('Order details','orderNumber','orderdetails','orderNumber'); // 2nd level
    $orderdetails->fields_inline('productCode,quantityOrdered,priceEach');//set the fields to allow inline editing
    $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

#OrderdateRequireddateShippeddateStatusCommentsCustomernumber 
1On Holdxbvfdfgdffgd0 View Edit Remove
211.02.2003 00:00:0021.02.2003 00:00:0012.02.2003 00:00:00ShippedItem 1p145 View Edit Remove
317.02.2003 00:00:0024.02.2003 00:00:0021.02.2003 00:00:00ShippedGreat Item278 View Edit Remove
403.03.2003 00:00:0012.03.2003 00:00:0008.03.2003 00:00:00Shipped385 View Edit Remove
510.03.2003 00:00:0019.03.2003 00:00:0011.03.2003 00:00:00ShippedCustomer requested that FedEx Ground is used for…487 View Edit Remove
618.03.2003 00:00:0024.03.2003 00:00:0020.03.2003 00:00:00Shipped187 View Edit Remove
725.03.2003 00:00:0031.03.2003 00:00:0030.03.2003 00:00:00Shipped129 View Edit Remove
824.03.2003 00:00:0003.04.2003 00:00:0029.03.2003 00:00:00ShippedCustomer requested that ad materials (such as…144 View Edit Remove
926.03.2003 00:00:0002.04.2003 00:00:0027.03.2003 00:00:00Shipped124 View Edit Remove
1001.04.2003 00:00:0007.04.2003 00:00:0002.04.2003 00:00:00Shipped172 View Edit Remove
Search