[web2py] Re: grid column names do not print nicely

2017-12-20 Thread Anthony
> > >> Probably we should add some code to web2py-bootstrap3.css to remove some >> of the URLs from the grid when printing (e.g., headings, pagination links, >> etc.). If you'd like, open a github issue and link to this thread. >> >> Anthony >> > > > Would there need to be a way to override

[web2py] Re: grid column names do not print nicely

2017-12-20 Thread Dave S
On Wednesday, December 20, 2017 at 11:13:18 AM UTC-8, Anthony wrote: > > Bootstrap includes CSS to print the href values for any links. To disable > this just for links within a web2py grid, you can add the following CSS > somewhere: > > @media print { > .web2py_table a[href]:after { >

[web2py] Re: grid column names do not print nicely

2017-12-20 Thread icodk
Thanks Anthony Eliminating buttons: .btn{ display: none !important; } Eliminating breadcrumb: .w2p_grid_breadcrumb_elem{ display: none !important; } All inside @media print { } The magic continue:-) On Wednesday, December 20, 2017 at 8:13:18 PM UTC+1, Anthony wrote: > > Bootstrap

[web2py] Re: grid column names do not print nicely

2017-12-20 Thread Anthony
Bootstrap includes CSS to print the href values for any links. To disable this just for links within a web2py grid, you can add the following CSS somewhere: @media print { .web2py_table a[href]:after { content: none !important; } } If you only want to eliminate the URLs from