Hi there,
Currently depending on how the layout of questions are configured, the exported pdf cuts off some questions. On the browser the questions are rendered correctly and we expect the same when exporting it to pdf. The widths are customized so they look nice when answering it (i.e smaller fields for postal code, bigger for address, etc).
I'm attaching the PDF where you can see that "Question 4" is rendered outside the page.
Is there anything that can be done to fix it? Maybe a configuration?
JSON{
"locale": "de",
"title": {
"de": "Test Survey"
},
"completedHtml": {
"de": "<h1>Vielen dank für das Ausfüllen</h1>\n<p>Wir werden uns umgehend mit Dir in Verbindung setzen.</p>\n"
},
"pages": [
{
"name": "page1",
"elements": [
{
"type": "panel",
"name": "panel1",
"elements": [
{
"type": "text",
"name": "question1",
"maxWidth": "500px",
"title": {
"de": "Question 1"
},
"format": "text"
},
{
"type": "text",
"name": "question2",
"width": "190px",
"minWidth": "190px",
"maxWidth": "190px",
"startWithNewLine": false,
"title": {
"de": "Question 2"
},
"format": "text"
},
{
"type": "text",
"name": "question3",
"width": "300px",
"maxWidth": "300px",
"startWithNewLine": false,
"title": {
"de": "Question 3"
},
"format": "text"
},
{
"type": "text",
"name": "question4",
"width": "300px",
"maxWidth": "300px",
"startWithNewLine": false,
"title": {
"de": "Question 4"
},
"format": "text"
}
]
}
]
}
]
}