ArtiGrid
v1.5

Combobox relacional


<?php
    $grid = new ArtiGrid();
    $grid->table('employees')
        ->template('bootstrap5')
        ->unset('filter', false)
        ->modal();
    $grid->combobox('officeCode','offices','officeCode','city');
    echo $grid->render();
?>
employeeNumber lastName firstName extension email officeCode reportsTo jobTitle Actions