Disable Fields - Logic NEW Bootstrap 5 theme
Hide fields based on an input or selected logic. For this instance selecting status "Shipped" will disable 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"));
// Disable the 'requiredDate' field when the 'status' is 'Shipped'
$xcrud->disable_logic("requiredDate","status","=","Shipped");
// Disable the 'shippedDate' field when the 'status' is 'Shipped'
$xcrud->disable_logic("shippedDate","status","=","Shipped");
// Render the xcrud instance to display the table and form
echo $xcrud->render();
?>
Orders
| # | Orderdate | Status | Requireddate | Shippeddate | Comments | |
|---|---|---|---|---|---|---|
| 1 | 11.02.2003 00:00:00 | Shipped | 29.07.2020 00:00:00 | 30.07.2020 00:00:00 | Great | View Edit Remove |
| 2 | 09.01.2003 00:00:00 | Completed | 12.01.2003 00:00:00 | 25.01.2003 00:00:00 | Check on availability. | View Edit Remove |
| 3 | 10.01.2003 00:00:00 | Shipped | 18.01.2003 00:00:00 | 14.01.2003 00:00:00 | View Edit Remove | |
| 4 | 29.01.2003 00:00:00 | Shipped | 07.02.2003 00:00:00 | 02.02.2003 00:00:00 | View Edit Remove | |
| 5 | 31.01.2003 00:00:00 | Shipped | 09.02.2003 00:00:00 | 01.02.2003 00:00:00 | View Edit Remove | |
| 6 | 11.02.2003 00:00:00 | Shipped | 21.02.2003 00:00:00 | 12.02.2003 00:00:00 | Item 1 | View Edit Remove |
| 7 | 17.02.2003 00:00:00 | Shipped | 24.02.2003 00:00:00 | 21.02.2003 00:00:00 | Great Item | View Edit Remove |
| 8 | 24.02.2003 00:00:00 | Shipped | 03.03.2003 00:00:00 | 26.02.2003 00:00:00 | Difficult to negotiate with customer. We need | View Edit Remove |
| 9 | 03.03.2003 00:00:00 | Shipped | 12.03.2003 00:00:00 | 08.03.2003 00:00:00 | View Edit Remove | |
| 10 | 10.03.2003 00:00:00 | Shipped | 19.03.2003 00:00:00 | 11.03.2003 00:00:00 | Customer requested that FedEx Ground is used for | View Edit Remove |