DEMO SITE v1.7.32

Auto refresh 1.7.25 Material Design theme

Auto refresh grid after a configured amount of time. For this case 15 seconds

HIDE CODE
<?php
    // Get an instance of the Xcrud class
	$xcrud = Xcrud::get_instance();	

    // Set the table to work with
	$xcrud->table("orderdetails");

    // Define which columns to display in the table
    $xcrud->columns("orderNumber,productCode,orderLineNumber,quantityOrdered,priceEach,total");

    // Define which fields are available for data entry or editing
    $xcrud->fields("orderNumber,productCode,orderLineNumber,quantityOrdered,priceEach,total");

    $xcrud->relation("officeCode","offices","officeCode","city");
    // Hide the 'extension' field when the 'officeCode' IN '7,3,4'(London, NYC, Paris)
    $xcrud->set_formular("total","{quantityOrdered}+{priceEach}","onmouseout"); //{lastName}+''+{firstName}@gmail.com
    $xcrud->set_routine("autorefresh","15");//number of seconds
    /*$xcrud->set_routine("save","5");//save after ever of seconds
    $xcrud->set_routine("query","5","update x set y =1");*/

    $xcrud->readonly("total");
    $xcrud->label("total","Total");
    // Render the xcrud instance to display the table and form
    echo $xcrud->render();	
?>

Orderdetails

#OrdernumberProductcodeOrderlinenumberQuantityorderedPriceeachTotal
Actions
110100S18_440942275.460 View Edit Remove
210101S18_2325425108.120 View Edit Remove
310101S18_2795126167.090 View Edit Remove
410101S24_193734532.530 View Edit Remove
510101S24_202224644.350 View Edit Remove
610102S18_1342239095.550 View Edit Remove
710102S18_136714143.130 View Edit Remove
810103S10_19491126214.30 View Edit Remove
910103S10_4962442119.670 View Edit Remove
1010103S12_1666827121.640 View Edit Remove
Search