DEMO SITE v1.7.26

Readonly Fields - Logic NEW Semantic UI theme

Make fields Readonly based on an input or selected logic. For this instance selecting status "Shipped" will make Requireddate and Shippeddate readonly

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"));

    // Make the 'requiredDate' field readonly when the 'status' is 'Shipped'
    $xcrud->readonly_logic("requiredDate","status","=","Shipped");

    // Make the 'shippedDate' field readonly when the 'status' is 'Shipped'
    $xcrud->readonly_logic("shippedDate","status","=","Shipped");

    // Render the xcrud instance to display the table and form
    echo $xcrud->render();	
?>

Orders

#OrderdateStatusRequireddateShippeddateComments
Actions
111.02.2003 00:00:00Shipped29.07.2020 00:00:0030.07.2020 00:00:00Great View Edit Remove
209.01.2003 00:00:00Completed12.01.2003 00:00:0025.01.2003 00:00:00Check on availability. View Edit Remove
310.01.2003 00:00:00Shipped18.01.2003 00:00:0014.01.2003 00:00:00 View Edit Remove
429.01.2003 00:00:00Shipped07.02.2003 00:00:0002.02.2003 00:00:00 View Edit Remove
531.01.2003 00:00:00Shipped09.02.2003 00:00:0001.02.2003 00:00:00 View Edit Remove
611.02.2003 00:00:00Shipped21.02.2003 00:00:0012.02.2003 00:00:00Item 1 View Edit Remove
717.02.2003 00:00:00Shipped24.02.2003 00:00:0021.02.2003 00:00:00Great Item View Edit Remove
824.02.2003 00:00:00Shipped03.03.2003 00:00:0026.02.2003 00:00:00Difficult to negotiate with customer. We need… View Edit Remove
903.03.2003 00:00:00Shipped12.03.2003 00:00:0008.03.2003 00:00:00 View Edit Remove
1010.03.2003 00:00:00Shipped19.03.2003 00:00:0011.03.2003 00:00:00Customer requested that FedEx Ground is used for… View Edit Remove
Search Execution time: 0.005 sMemory usage: 0.18 MB