Bulk Edit 1.7.25.2 Minimal theme
Do bulk edit of amounts. Select Multiple records and click Bulk Edit
HIDE CODE
<?php
$xcrud = Xcrud::get_instance();
$xcrud->table("payments");
$xcrud->fields("amount");
$xcrud->set_bulk_edit(true);
$xcrud->set_bulk_select(true);
echo $xcrud->render();
?>