문제

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

도움이 되었습니까?

해결책

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; }
}

다른 팁

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 }

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top