Disable Fields - Logic 1.7.24 Semantic UI 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 | 12.09.2003 00:00:00 | Not Shipped | 18.09.2003 00:00:00 | 17.09.2003 00:00:00 | View Edit Remove | |
2 | 19.09.2003 00:00:00 | Shipped | 27.09.2003 00:00:00 | 21.09.2003 00:00:00 | They want to reevaluate their terms agreement | View Edit Remove |
3 | 21.09.2003 00:00:00 | Shipped | 30.09.2003 00:00:00 | 24.09.2003 00:00:00 | View Edit Remove | |
4 | 25.09.2003 00:00:00 | Shipped | 03.10.2003 00:00:00 | 01.10.2003 00:00:00 | View Edit Remove | |
5 | 28.09.2003 00:00:00 | Shipped | 05.10.2003 00:00:00 | 03.10.2003 00:00:00 | View Edit Remove | |
6 | 02.10.2003 00:00:00 | Shipped | 12.10.2003 00:00:00 | 08.10.2003 00:00:00 | View Edit Remove | |
7 | 06.10.2003 00:00:00 | Shipped | 13.10.2003 00:00:00 | 07.10.2003 00:00:00 | View Edit Remove | |
8 | 08.10.2003 00:00:00 | Shipped | 17.10.2003 00:00:00 | 11.10.2003 00:00:00 | View Edit Remove | |
9 | 09.10.2003 00:00:00 | Shipped | 15.10.2003 00:00:00 | 14.10.2003 00:00:00 | View Edit Remove | |
10 | 10.10.2003 00:00:00 | Shipped | 18.10.2003 00:00:00 | 15.10.2003 00:00:00 | View Edit Remove |