DEMO SITE v1.7.24

Form Buttons NEW Bootstrap 4.5 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","");
    $xcrud->change_type("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

#OrderdateStatusRequireddateShippeddateComments 
101.03.2003 00:00:00Completed12.03.2003 00:00:0008.03.2003 00:00:00 View Edit Remove
225.03.2003 00:00:00Not Shipped31.03.2003 00:00:0030.03.2003 00:00:00 View Edit Remove
304.04.2003 00:00:00Completed12.04.2003 00:00:0007.04.2003 00:00:00 vdd View Edit Remove
411.04.2003 00:00:00Shipped18.04.2003 00:00:1413.04.2003 00:00:00 View Edit Remove
516.04.2003 00:00:00Shipped24.04.2003 00:00:0017.04.2003 00:00:00 View Edit Remove
621.04.2003 00:00:00Shipped29.04.2003 00:00:0026.04.2003 00:00:00Customer has worked with some of our vendors in… View Edit Remove
728.04.2003 00:00:00Shipped05.05.2003 00:00:0002.05.2003 00:00:00 View Edit Remove
829.04.2003 00:00:00Shipped08.05.2003 00:00:0001.05.2003 00:00:00 View Edit Remove
907.05.2003 00:00:00Shipped13.05.2003 00:00:0013.05.2003 00:00:00 View Edit Remove
1008.05.2003 00:00:00Shipped16.05.2003 00:00:0013.05.2003 00:00:00 View Edit Remove
Search