Page 1 of 1

Get text value of fields only for print form

Posted: 18 Jul 2016
by Dan_C
I turned on the print form button in general settings, but I'm finding that lookup fields and related items display the value along with a url. I don't want that URL to show. Is there an easy way to just display text values for printing?

Re: Get text value of fields only for print form

Posted: 19 Jul 2016
by Dmitry Kozlov
Couldn't reproduce the issue. My browser prints all links as text without URLs. What browser do you use? Could you provide a screenshot?

Re: Get text value of fields only for print form

Posted: 19 Jul 2016
by Dan_C
Chrome Version 51.0.2704.103 m

It seems to happen in any field that's a link including: related items (if I have a link to the item column showing), person fields, or Plumsail lookup.

This is only when attempting to print. It looks fine in display form, but print preview shows the text and the urls.

Mind if I send the screenshot to your email?

Re: Get text value of fields only for print form

Posted: 20 Jul 2016
by Dmitry Kozlov
Hello,

Yes, please, drop a screenshot to support@spform.com.

Try to insert the following code into CSS-editor:

Code: Select all

@media print {
  a[href]:after {
    content: none !important;
  }
}

Re: Get text value of fields only for print form

Posted: 20 Jul 2016
by Dan_C
That worked. Thank you.