DEMO SITE v1.7.31

Hide Fields-Logic 1.7.24 Minimal theme

Hide fields based on an input or selected logic. For this instance selecting status "Shipped" will hide 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"));

    // Hide the 'requiredDate' field when the 'status' is 'Shipped'
    $xcrud->hide_logic("requiredDate","status","=","Shipped");

    // Hide the 'shippedDate' field when the 'status' is 'Shipped'
    $xcrud->hide_logic("shippedDate","status","=","Shipped");

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

Orders

#OrderdateStatusRequireddateShippeddateComments
101.07.2003 00:00:00Shipped10.07.2003 00:00:0005.07.2003 00:00:00 gfchchf rtrtyrty View Edit Remove
202.07.2003 00:00:00Shipped12.07.2003 00:00:0003.07.2003 00:00:00NULL View Edit Remove
301.08.2003 00:00:00Shipped09.08.2003 00:00:0004.08.2003 00:00:00www View Edit Remove
419.09.2003 00:00:00Shipped27.09.2003 00:00:0021.09.2003 00:00:00They want to reevaluate their terms agreement… View Edit Remove
521.09.2003 00:00:00Shipped30.09.2003 00:00:0024.09.2003 00:00:00 View Edit Remove
625.09.2003 00:00:00Shipped03.10.2003 00:00:0001.10.2003 00:00:00 View Edit Remove
728.09.2003 00:00:00Shipped05.10.2003 00:00:0003.10.2003 00:00:00 View Edit Remove
802.10.2003 00:00:00Shipped12.10.2003 00:00:0008.10.2003 00:00:00 View Edit Remove
906.10.2003 00:00:00Shipped13.10.2003 00:00:0007.10.2003 00:00:00 View Edit Remove
1008.10.2003 00:00:00Shipped17.10.2003 00:00:0011.10.2003 00:00:00 View Edit Remove
Add Export into CSV Print Search