DEMO SITE v1.7.24

Grid tricks Bootstrap 4.5 theme

Clickable column - very simple

HIDE CODE
<?php
	$xcrud = Xcrud::get_instance();
    $xcrud->table('customers');
    $xcrud->columns('customerName,city');
    $xcrud->hide_button('edit');
    $xcrud->unset_view();
    $xcrud->column_pattern('customerName', '<a href="#" class="xcrud-action" data-task="edit" data-primary="{customerNumber}">{value}</a>');
    $xcrud->column_width('city','20%');
    echo $xcrud->render();
?>