DEMO SITE v1.7.24

Disable Fields - Logic NEW 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");

    // 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

#OrderdateStatusRequireddateShippeddateComments 
101.03.2003 00:00:00Completed12.03.2003 00:00:0008.03.2003 00:00:00 View Edit Remove
225.03.2003 00:00:00Not Shipped31.03.2003 00:00:0030.03.2003 00:00:00 View Edit Remove
304.04.2003 00:00:00Completed12.04.2003 00:00:0007.04.2003 00:00:00 vdd View Edit Remove
411.04.2003 00:00:00Shipped18.04.2003 00:00:1413.04.2003 00:00:00 View Edit Remove
516.04.2003 00:00:00Shipped24.04.2003 00:00:0017.04.2003 00:00:00 View Edit Remove
621.04.2003 00:00:00Shipped29.04.2003 00:00:0026.04.2003 00:00:00Customer has worked with some of our vendors in… View Edit Remove
728.04.2003 00:00:00Shipped05.05.2003 00:00:0002.05.2003 00:00:00 View Edit Remove
829.04.2003 00:00:00Shipped08.05.2003 00:00:0001.05.2003 00:00:00 View Edit Remove
907.05.2003 00:00:00Shipped13.05.2003 00:00:0013.05.2003 00:00:00 View Edit Remove
1008.05.2003 00:00:00Shipped16.05.2003 00:00:0013.05.2003 00:00:00 View Edit Remove
Search