Disable Fields - Logic 1.7.24 Bootstrap 4.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"); $xcrud->change_type("orderDate","flatpickr","","{enableTime:false,dateFormat:Y-m-d H:i:s,locale:it,altFormat:d-m-Y,altInput: true}");//"{enableTime:true,dateFormat:Y-m-d H:i:s,locale:it,altFormat:d-m-Y H:i:s,altInput: true} $xcrud->change_type("requiredDate","flatpickr","",'{enableTime:false,dateFormat:Y-m-d H:i,locale:it,altFormat:d-m-Y,altInput: true}'); //$xcrud->change_type("shippedDate","flatpickr","",'{enableTime:true,dateFormat:Y-m-d H:i,locale:it,altFormat:d-m-Y,altInput: true}'); // 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 | 2003-02-20 00:00:00 | Shipped | 2003-05-28 00:00:00 | 23.04.2003 22:00:00 | Difficult to negotiate with customer. We need | View Edit Remove |
2 | 2003-03-03 00:00:00 | Shipped | 2003-03-12 00:00:00 | 08.03.2003 00:00:00 | View Edit Remove | |
3 | 2003-03-10 00:00:00 | Shipped | 2003-03-19 00:00:00 | 11.03.2003 00:00:00 | Customer requested that FedEx Ground is used for | View Edit Remove |
4 | 2003-03-18 00:00:00 | Shipped | 2003-03-24 00:00:00 | 20.03.2003 00:00:00 | View Edit Remove | |
5 | 2003-03-25 00:00:00 | Shipped | 2003-03-31 00:00:00 | 30.03.2003 00:00:00 | View Edit Remove | |
6 | 2003-03-24 00:00:00 | Shipped | 2003-04-03 00:00:00 | 29.03.2003 00:00:00 | Customer requested that ad materials (such as | View Edit Remove |
7 | 2003-03-26 00:00:00 | Shipped | 2003-04-02 00:00:00 | 27.03.2003 00:00:00 | View Edit Remove | |
8 | 2003-04-01 00:00:00 | Shipped | 2003-04-07 00:00:00 | 02.04.2003 00:00:00 | View Edit Remove | |
9 | 2003-04-04 00:00:00 | Shipped | 2003-04-12 00:00:00 | 07.04.2003 00:00:00 | View Edit Remove | |
10 | 2003-04-11 00:00:00 | Shipped | 2003-04-19 00:00:00 | 13.04.2003 00:00:00 | View Edit Remove |