DEMO SITE v1.7.31

Readonly Fields - Logic 1.7.24 Bootstrap 5 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

Add
#OrderdateStatusRequireddateShippeddateComments
Actions
120.10.2003 00:00:0027.10.2003 00:00:0024.10.2003 00:00:00ffdfd View Edit Remove
221.10.2003 00:00:00Shipped30.10.2003 00:00:0023.10.2003 00:00:00Questo ordine è stato contestato, ma risolto… View Edit Remove
322.10.2003 00:00:00Shipped31.10.2003 00:00:0026.12.2003 00:00:00This order was on hold because customers's credit… View Edit Remove
421.10.2003 00:00:00Shipped30.10.2003 00:00:0027.10.2003 00:00:00 View Edit Remove
523.10.2003 00:00:0030.10.2003 00:00:00Customer called to cancel. The warehouse was… View Edit Remove
628.10.2003 00:00:00Shipped03.11.2003 00:00:0001.11.2003 00:00:00 View Edit Remove
704.11.2003 00:00:00Shipped14.11.2003 00:00:0009.11.2003 00:00:00 View Edit Remove
804.11.2003 00:00:00Shipped12.11.2003 00:00:0007.11.2003 00:00:00 View Edit Remove
905.11.2003 00:00:00Shipped13.11.2003 00:00:0007.11.2003 00:00:00 View Edit Remove
1005.11.2003 00:00:00Shipped14.11.2003 00:00:0011.11.2003 00:00:00 View Edit Remove
showing_records 1 to 10 of 319
Search