Question T7813
Visible to All Users

Quiz: Each page I want text to be added after the submit button

created 3 years ago (modified 3 years ago)

Hey Team,

Awesome work on this framework. !

I am implementing survey quiz which has 5 questions in 5 page with next/previous buttons on each.

I need to add some description below the button only for the 3rd question, I have added it as a HTML question at the end but still it is coming above the next question button. I want this description below the footer navigation buttons.

Can anyone help me to achieve this?

Clipboard-File-2.png

Regards,
Suthakar

Answers approved by surveyjs Support

created 3 years ago

Hello,
If you want to make this bellow the navigation button, then you can do it outside the survey html element.
You can add a property to a page: Survey.Serializer.addProperty("page", {name: "bottomDescription:html", category:"general", visibleIndex: 3});
Then initially, on first load, and on survey.onCurrentPageChanged check this property on the current page survey.currentPage.bottomDescription and assign it to your html element innerHtml, that is under survey html element.

Thank you,
Andrew
SurveyJS Team