Hide Fields - Multiple
Logic Value NEW Semantic UI theme
Hide fields based on multiple inputs or multiple selected logic. For this instance selecting only 3 "Offices" will hide extension
HIDE CODE
<?php
// Get an instance of the Xcrud class
$xcrud = Xcrud::get_instance();
// Set the table to work with
$xcrud->table("employees");
// Define which columns to display in the table
$xcrud->columns("lastName,firstName,extension,email,officeCode");
// Define which fields are available for data entry or editing
$xcrud->fields("lastName,firstName,extension,email,officeCode");
$xcrud->relation("officeCode","offices","officeCode","city");
// Hide the 'extension' field when the 'officeCode' IN '7,3,4'(London, NYC, Paris)
$xcrud->hide_logic("extension","officeCode","IN","7,3,4");
// Render the xcrud instance to display the table and form
echo $xcrud->render();
?>
Employees
| # | Lastname | Firstname | Extension | Officecode | ||
|---|---|---|---|---|---|---|
| 1 | Murphy | Diane | x5800 | dmurphy@classicmodelcars.com | Tokyo | View Edit Remove |
| 2 | Patterson | Mar'y | x4611 | mpatterso@classicmodelcars.com | San Francisco | View Edit Remove |
| 3 | Firrelli | Jeff | x9273 | jfirrelli@classicmodelcars.com | San Francisco | View Edit Remove |
| 4 | Patterson | William | x4871 | wpatterson@classicmodelcars.com | London | View Edit Remove |
| 5 | Bondur | Gerard | x5408 | gbondur@classicmodelcars.com | Paris | View Edit Remove |
| 6 | Bow | Anthony | x5428 | abow@classicmodelcars.com | San Francisco | View Edit Remove |
| 7 | Jennings | Leslie | x3291 | ljennings@classicmodelcars.com | San Francisco | View Edit Remove |
| 8 | Thompson | Leslie | x4065 | lthompson@classicmodelcars.com | San Francisco | View Edit Remove |
| 9 | Firrelli | Julie | x2173 | jfirrelli@classicmodelcars.com | Boston | View Edit Remove |
| 10 | Patterson | Steve | x4334 | spatterson@classicmodelcars.com | Boston | View Edit Remove |