Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...How can I create/enable a Print-button?How can I create/enable a Print-button?
Previous
 
Next
New Post
8/29/2011 10:35 AM
 
On my website I want a button that does the following:
1) A new window is opened in which the content of the website is displayed in a way it can be printed. I.e. all unnecessary content is left out, and everything is properly positioned. (by creating a print.css-file I guess)
2) The print-control is automatically opened, so all I have to do to print is to press the button 'print'.

What's the decent way to do this?!
 
New Post
8/30/2011 4:15 AM
 
DNN supports a print button per module as a container skin object, there is no specific page print support.

For printing all page content cleanly, you need a CSS file with media specific directives, i.e. set visibility to hidden for elements not to show up on the printed page.
Creating a page print button just needs a small javascript, e.g. from here: http://htmlfreecodes.com/How_to_print_a_page_in_HTML_pages.htm

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
8/30/2011 4:30 AM
 
Thanks!!
I'm trying to set up my print-page now. Maybe I'll come back for some more of your helpful answers!
 
New Post
8/30/2011 5:01 AM
 
Ehmm, where can I define this special CSS-file? How can I specify that this print.css should be used for printing?
 
New Post
9/20/2011 1:56 AM
 
Hi

You need to define a print media type

Here is some code to do it directly in the skin.css instead of external file

/* print media section */
@media print
{
  
/*
============
css for printing
============
*/


this is automatically detected byt the browser so when you press the standard print button in browser it prints using this stylesheet
#logo
{
    display: none;
}

#loginlinks
{
    display: none;
}


/* close @media print */
}
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...How can I create/enable a Print-button?How can I create/enable a Print-button?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out