ArtiGrid
v2.0

Rows Reorder

Row Drag & Drop: This demo allows you to easily reorder records by dragging and dropping rows. ArtiGrid automatically updates the position of each record using the order column.


<?php
    $grid = new ArtiGrid();
    $grid->table('nav_items')
        ->template('bootstrap5')
        ->rowDrag(true, 'order')
        ->modal();
    echo $grid->render();
?>