DEMO SITE v1.7.31

Readonly Fields - Logic 1.7.24 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
105.11.2003 00:00:00Shipped13.11.2003 00:00:0007.11.2003 00:00:00 View Edit Remove
205.11.2003 00:00:00Shipped14.11.2003 00:00:0011.11.2003 00:00:00 View Edit Remove
306.11.2003 00:00:00Shipped15.11.2003 00:00:0012.11.2003 00:00:00 View Edit Remove
407.11.2003 00:00:00Shipped17.11.2003 00:00:0012.11.2003 00:00:00 View Edit Remove
508.11.2003 00:00:00Shipped16.11.2003 00:00:0010.11.2003 00:00:00Custom shipping instructions sent to warehouse View Edit Remove
611.11.2003 00:00:0017.11.2003 00:00:0013.11.2003 00:00:00Customer cancelled due to urgent budgeting… View Edit Remove
712.11.2003 00:00:00Shipped19.11.2003 00:00:0015.11.2003 00:00:00 View Edit Remove
812.11.2003 00:00:00Shipped21.11.2003 00:00:0018.11.2003 00:00:00 View Edit Remove
913.11.2003 00:00:00Shipped22.11.2003 00:00:0015.11.2003 00:00:00We need to keep in close contact with their… View Edit Remove
1014.11.2003 00:00:00Shipped22.11.2003 00:00:0020.11.2003 00:00:00 View Edit Remove
Search