DEMO SITE v1.7.31

Bulk Delete 1.7.25.2 Semantic UI theme

Delete multiple records including bulk delete for nested tabs data! No more javascript.. Select Multiple records and click Bulk Delete

HIDE CODE
<?php  
	$xcrud = Xcrud::get_instance();
    $xcrud->table('orders');
    $xcrud->default_tab('Order info');
    $xcrud->set_bulk_delete(true);
    $xcrud->set_bulk_select(true);

    $orderdetails = $xcrud->nested_table('Order details','orderNumber','orderdetails','orderNumber'); // 2nd level
    $orderdetails->columns('productCode,quantityOrdered,priceEach');
    $orderdetails->fields('productCode,quantityOrdered,priceEach');
    $orderdetails->default_tab('Detail information');
    $orderdetails->set_bulk_delete(true);
    $orderdetails->set_bulk_select(true);
    
    $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();
	
?>


<script>
  $('.xcrud-tabs .menu .item').tab('change tab','tab1.php');
</script>
xCRUDConnection error: SQLSTATE[08004] [1040] Too many connections