DEMO SITE v1.7.31

Form Buttons 1.7.25 Semantic UI 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
Actions
125.09.2003 00:00:00Shipped03.10.2003 00:00:0018.10.2003 02:00:00www wweee asdasd asdasd   adads View Edit Remove
228.09.2003 00:00:00Shipped05.10.2003 00:00:0003.10.2003 00:00:00 View Edit Remove
302.10.2003 00:00:00Shipped12.10.2003 00:00:0008.10.2003 00:00:00 View Edit Remove
406.10.2003 00:00:00Shipped13.10.2003 00:00:0007.10.2003 00:00:00 View Edit Remove
508.10.2003 00:00:00Shipped17.10.2003 00:00:0011.10.2003 00:00:00 View Edit Remove
609.10.2003 00:00:00Shipped15.10.2003 00:00:0014.10.2003 00:00:00 View Edit Remove
710.10.2003 00:00:00Shipped18.10.2003 00:00:0015.10.2003 00:00:00 View Edit Remove
810.10.2003 00:00:00Shipped19.10.2003 00:00:0016.10.2003 00:00:00 View Edit Remove
911.10.2003 00:00:00Shipped17.10.2003 00:00:0017.10.2003 00:00:00 View Edit Remove
1017.10.2003 00:00:00Shipped25.10.2003 00:00:0020.10.2003 00:00:00 View Edit Remove
Search