DEMO SITE v1.7.32

Form Buttons 1.7.25 Tailwind CSS theme

Create buttons to be displayed on the form

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,action");

    $xcrud->fields_arrange("orderDate,status,requiredDate,shippedDate","Info",true);
    $xcrud->fields_arrange("action","Action",true);

    // 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"));

    $xcrud->label("action","");
    // create_field() (not change_type()) registers "action" as a virtual/custom
    // field, excluding it from the SQL SELECT. change_type() alone left this demo's
    // edit screen throwing "Unknown column 'orders.action'" as soon as you clicked
    // a row to edit it, since "action" isn't a real orders column.
    $xcrud->create_field("action","button","",array("href"=>"#","after"=>"edit","task"=>"save","icon"=>"fa fa-file","title"=>"Save My Form"));
    $xcrud->set_attr("action",array("class"=>"btn btn-light xcrud-action","data-confirm"=>"Do you wish to save?"));

    $xcrud->hide_button("save_edit");
    $xcrud->hide_button("save_return");
    $xcrud->hide_button("save_new");

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

Orders

Add
#OrderdateStatusRequireddateShippeddateComments
Actions
120.02.2003 00:00:00Shipped29.07.2020 00:00:0030.07.2020 00:00:00Great View Edit Remove
210.01.2003 00:00:00Shipped18.01.2003 00:00:0014.01.2003 00:00:00Great Great View Edit Remove
329.01.2003 00:00:00Shipped07.02.2003 00:00:0002.02.2003 00:00:00MMM View Edit Remove
431.01.2003 00:00:00Shipped09.02.2003 00:00:0019.02.2003 00:00:00Hi View Edit Remove
511.02.2003 00:00:00Shipped21.02.2003 00:00:0012.02.2003 00:00:00Item 1 View Edit Remove
617.02.2003 00:00:00Shipped24.02.2003 00:00:0021.02.2003 00:00:00Great Item View Edit Remove
724.02.2003 00:00:00Shipped03.03.2003 00:00:0026.02.2003 00:00:00Difficult to negotiate with customer. We need… View Edit Remove
803.03.2003 00:00:00Shipped12.03.2003 00:00:0008.03.2003 00:00:00 View Edit Remove
910.03.2003 00:00:00Shipped19.03.2003 00:00:0011.03.2003 00:00:00Customer requested that FedEx Ground is used for… View Edit Remove
1018.03.2003 00:00:00Shipped24.03.2003 00:00:0020.03.2003 00:00:00 View Edit Remove
Showing 1 to 10 of 327
Search