DEMO SITE v1.7.31

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

Add
#OrderdateStatusRequireddateShippeddateComments
Actions
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:00 View Edit Remove
410.08.2003 00:00:00Shipped18.08.2003 00:00:0012.08.2003 00:00:00Can we deliver the new Ford Mustang models by… View Edit Remove
513.08.2003 00:00:00Shipped21.08.2003 00:00:0014.08.2003 00:00:00 View Edit Remove
625.08.2003 00:00:00Shipped02.09.2003 00:00:0031.08.2003 00:00:00 View Edit Remove
703.09.2003 00:00:00Shipped13.09.2003 00:00:0006.09.2003 00:00:00 View Edit Remove
805.09.2003 00:00:00Shipped12.09.2003 00:00:0009.09.2003 00:00:00 View Edit Remove
911.09.2003 00:00:00Shipped21.09.2003 00:00:0015.09.2003 00:00:00They want to reevaluate their terms agreement… View Edit Remove
1012.09.2003 00:00:00Shipped18.09.2003 00:00:0017.09.2003 00:00:00 View Edit Remove
showing_records 1 to 10 of 339
Search