ArtiGrid
v1.6

Unfiltered Raw

You can disable grid filters using the unset('filter') option.

This is useful when you want to display raw or unfiltered data without showing filtering controls in the interface.


<?php
    $grid = new ArtiGrid();
    $grid->table('gallery')
        ->required(false)
        ->validation_required([
            'title',
            'active'
        ])
        ->template('bootstrap5')
        ->unset('filter', false)
        ->modal();
    echo $grid->render();
?>