Question

Currently while generating PDF , PDF is displaying Form Title. Is there any way it will also display Form Description of the same form ?

Form Description I am referring is as per bellow pointer :

enter image description here

Was it helpful?

Solution

You need to change the CSS used. By default, there is a rule like this:

@media print {
    .fr-form-description { display: none; }
}

You would have to add a stronger (or placed after) rule doing for example:

@media print {
    .fr-form-description { display: block; }
}

OTHER TIPS

I have to add following class in form-runner-orbeon.css ( @media print { })

.fr-top .fr-form-description { color: black }

.fr-top .fr-form-description { display: block }

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top