DEMO SITE v1.7.31

Inline Editing (Nested Tab) Bootstrap 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

Add
#OrderdateRequireddateShippeddateStatusCommentsCustomernumber
Actions
121.10.2003 00:00:0030.10.2003 00:00:0027.10.2003 00:00:00Shipped462 View Edit Remove
223.10.2003 00:00:0030.10.2003 00:00:00CancelledCustomer called to cancel. The warehouse was…448 View Edit Remove
328.10.2003 00:00:0003.11.2003 00:00:0001.11.2003 00:00:00Shipped161 View Edit Remove
404.11.2003 00:00:0014.11.2003 00:00:0009.11.2003 00:00:00Shipped276 View Edit Remove
504.11.2003 00:00:0012.11.2003 00:00:0007.11.2003 00:00:00Shipped452 View Edit Remove
605.11.2003 00:00:0013.11.2003 00:00:0007.11.2003 00:00:00Shipped233 View Edit Remove
705.11.2003 00:00:0014.11.2003 00:00:0011.11.2003 00:00:00Shipped175 View Edit Remove
805.11.2003 00:00:0015.11.2003 00:00:0009.11.2003 00:00:00ShippedCautious optimism. We have happy customers here,…278 View Edit Remove
906.11.2003 00:00:0015.11.2003 00:00:0010.11.2003 00:00:00Shipped333 View Edit Remove
1006.11.2003 00:00:0014.11.2003 00:00:0009.11.2003 00:00:00Shipped324 View Edit Remove
showing_records 1 to 10 of 329
Search