Form Nav.(Next - Prev) Minimal theme
Move Next and Previous in a form
HIDE CODE
<?php
$xcrud = Xcrud::get_instance();
$xcrud->table('orders');
$xcrud->default_tab('Order info');
$xcrud->columns('orderDate,requiredDate,status,comments,customerNumber');
$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');
$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->set_next_previous(true);
$xcrud->unset_remove();
echo $xcrud->render('edit', 10105);
//echo $xcrud->render();
?>
Warning: Undefined array key "orders.orderDate" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8034
Warning: Undefined array key "orders.orderDate" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8037
Warning: Undefined array key "orders.requiredDate" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8034
Warning: Undefined array key "orders.requiredDate" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8037
Warning: Undefined array key "orders.shippedDate" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8034
Warning: Undefined array key "orders.shippedDate" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8037
Warning: Undefined array key "orders.status" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8034
Warning: Undefined array key "orders.status" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8037
Warning: Undefined array key "orders.comments" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8034
Warning: Undefined array key "orders.comments" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8037
Warning: Undefined array key "orders.customerNumber" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8034
Warning: Undefined array key "orders.customerNumber" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8037