Printing TABS

Forums Classic DFFS Printing TABS

Viewing 1 reply thread
  • Author
    Posts
    • #6421
      Peter Zarro
      Participant

      Hi Alex, is there simple way of printing a specific tab or all tabs within display mode or for that instance any mode

      I have been using the following code within Display Form

      <input type=”button” value=” Print this Page ”
      onclick=”window.print();return false;” />

      The issue I have is that if multiple lines of text fields are two wide the printable version is cut off and information does not print in its entirety

      I have look at other forum topics to limit the size of the multiple lines of text fields (appended) but to date are not having any success.

      I am using SP2010

      Please Help!!!

      As always thanks in advance

    • #6425
      Alexander Bautz
      Keymaster

      I’m sorry, but this is a bit tricky to answer. If you can add a screenshot of the DispForm you are trying to print I might be able to help.

      My best guess would be to add some CSS that triggers on print to make the form fit on the printout. This is the format of the CSS code you will want to use (contents is only an example):

      @media print {
          div {
              font-size: 20px;
              color: red;
          }
      }

      Alexander

Viewing 1 reply thread
  • You must be logged in to reply to this topic.