Page 1 of 1

Print with only some fields

Posted: 2018-12-15 21:16
by stefdefrance
Hello everybody (from France)

I have a question for you... I didn't findd the right answer in the forum :
- I would like to print some tables view with the printing button but I want to have only 4 fields of the table onthe printed page.

In my mind there are different possibilities

- Working with hook but I'm not a very good codeur
- Changing the DVP file
- Creating a second table wich is similar of the parent table with only the specifics fields.

I prefer the last solution but I don't know how to do it

Thanks for your help

Re: Print with only some fields

Posted: 2018-12-19 08:10
by hubert
Hi Stef,
may be check the invoice course on Udemy or you could work with FPdF where you can fully parameter your print template.

Re: Print with only some fields

Posted: 2018-12-19 20:41
by a.gneady
Here is a suggested solution without creating a new table or editing generated files ... in the hooks/footer-extras.php file, add this code:

Code: Select all

<script>
    $j(function() {
       // change 'tablename' below to the name of the concerned table
       if(location.href.match(/tablename/) == null) return;

       // change the number '4' below to the index of the field you want to hide when printing .. first field is 0
       // and repeat this line for each field you want to hide
       $j('div.form-group').eq(4).addClass('hidden-print');
    })
</script>
You can test your code by opening the print preview of the page fromt he browser menu.

Re: Print with only some fields

Posted: 2019-01-26 11:19
by stefdefrance
Hello to you all

In fact, I've found the answer. With the new possibilities of appgini we can choose the fields we want to see and so the fields we want to print...

I love AppGini !!!!