In the Community Edition I was able to create a custom header and footer during printing (clicking the print button).
See image for reference:
I did it by modifying the file:Grocery_CRUD.php located in 'application\libraries\'
and adding the following line above the code: $string_to_print .= '<table width="100%" cellpadding="0" cellspacing="0" ><tr>';
//LARA ADDED THIS LAST NOV.30, 2016 TO ALLOW CUSTOM HEADER DURING PRINT if(isset($_SESSION['CustomHeader']) && $_SESSION['CustomHeader']<>'') $string_to_print .= $_SESSION['CustomHeader'];
Now I was wondering if It can be done in the Enterprise Edition by using a custom model instead of editing the core or library.
This would be useful to fully maximize the printout or report generated by the CRUD.