DEMO SITE v1.7.24

Ordering example Bootstrap 4.5 theme

This example uses create_action() callback for building this feature

HIDE CODE
<?php
    $xcrud = Xcrud::get_instance();
    $xcrud->table('offices');
    
    $xcrud->button('#', "Top", 'glyphicon glyphicon-arrow-up icon-arrow-up', 'btn xcrud-action', array(
        'data-action' => 'movetop',
        'data-task' => 'action',
        'data-primary' => '{officeCode}'));
    $xcrud->button('#', "Bottom", 'glyphicon glyphicon-arrow-down icon-arrow-down', 'btn xcrud-action', array(
        'data-action' => 'movebottom',
        'data-task' => 'action',
        'data-primary' => '{officeCode}'));
        
    $xcrud->create_action('movetop', 'movetop');
    $xcrud->create_action('movebottom', 'movebottom');
    
    $xcrud->unset_sortable();
    $xcrud->order_by('ordering');
    $xcrud->columns('city,phone,addressLine1,country');
    
    echo $xcrud->render();
?>

Offices

#CityPhoneAddressline1Country 
1London+44 20 7877 204125 Old Broad StreetUK Top Bottom View Edit Remove
2Sydney+61 2 9264 24515-11 Wentworth AvenueAustralia Top Bottom View Edit Remove
3Boston+1 215 837 08251550 Court PlaceUSA Top Bottom View Edit Remove
4Paris+33 14 723 440443 Rue Jouffroy D'abbansFrance Top Bottom View Edit Remove
5NYC+1 212 555 3000523 East 53rd StreetUSA Top Bottom View Edit Remove
6Tokyo+81 33 224 50004-1 KioichoJapan Top Bottom View Edit Remove
Search