Grid tricks
Clickable column - very simple.
public function grid_tricks()
{
$xcrud = get_xcrud();
$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%');
$data['content'] = $xcrud->render();
return view('demos', $data);
}
Customers
| # | Customername | City | |
|---|---|---|---|
| 1 | Zbyszek Zbyszek 3 | Warszawa | |
| 2 | Euro+ Shopping Channel | Madrid | |
| 3 | Saveley & Henriot, Co. | Lyon | |
| 4 | Dragon Souveniers, Ltd. | Singapore | |
| 5 | Muscle Machine Inc | NYC | |
| 6 | Technics Stores Inc. | Burlingame | |
| 7 | Handji Gifts& Co | Singapore | |
| 8 | Herkku Gifts | Bergen | |
| 9 | Joe | New Haven | |
| 10 | Porto Imports Co. | Lisboa |