Hide Fields-Logic 1.7.24 Bootstrap 5 theme
Hide fields based on an input or selected logic. For this instance selecting status "Shipped" will hide Requireddate and Shippeddate
HIDE CODE
<?php // Get an instance of the Xcrud class $xcrud = Xcrud::get_instance(); // Set the table to work with $xcrud->table("orders"); // Define which columns to display in the table $xcrud->columns("orderDate,status,requiredDate,shippedDate,comments"); // Define which fields are available for data entry or editing $xcrud->fields("orderDate,status,requiredDate,shippedDate,comments"); // Change the input type of the 'status' field to a select dropdown and provide options $xcrud->change_type("status","select","",array("Not Shipped"=>"Not Shipped","Shipped"=>"Shipped","Completed"=>"Completed")); // Hide the 'requiredDate' field when the 'status' is 'Shipped' $xcrud->hide_logic("requiredDate","status","=","Shipped"); // Hide the 'shippedDate' field when the 'status' is 'Shipped' $xcrud->hide_logic("shippedDate","status","=","Shipped"); // Render the xcrud instance to display the table and form echo $xcrud->render(); ?>
Orders
# | Orderdate | Status | Requireddate | Shippeddate | Comments | |
---|---|---|---|---|---|---|
1 | 28.05.2003 00:00:00 | Shipped | 07.06.2003 00:00:00 | 02.06.2003 00:00:00 | View Edit Remove | |
2 | 03.06.2003 00:00:00 | Not Shipped | 09.06.2003 00:00:00 | 06.06.2003 00:00:00 | Customer requested special shippment. The | View Edit Remove |
3 | 06.06.2003 00:00:00 | Shipped | 12.06.2003 00:00:00 | 11.06.2003 00:00:00 | View Edit Remove | |
4 | 12.06.2003 00:00:00 | Shipped | 18.06.2003 00:00:00 | 14.06.2003 00:00:00 | View Edit Remove | |
5 | 16.06.2003 00:00:00 | Shipped | 24.06.2003 00:00:00 | 21.06.2003 00:00:00 | View Edit Remove | |
6 | 16.06.2003 00:00:00 | Shipped | 25.06.2003 00:00:00 | 21.06.2003 00:00:00 | View Edit Remove | |
7 | 25.06.2003 00:00:00 | Shipped | 01.07.2003 00:00:00 | 28.06.2003 00:00:00 | View Edit Remove | |
8 | 27.06.2003 00:00:00 | Shipped | 04.07.2003 00:00:00 | 03.07.2003 00:00:00 | View Edit Remove | |
9 | 01.07.2003 00:00:00 | Shipped | 10.07.2003 00:00:00 | 05.07.2003 00:00:00 | View Edit Remove | |
10 | 02.07.2003 00:00:00 | Shipped | 12.07.2003 00:00:00 | 03.07.2003 00:00:00 | View Edit Remove |