surveyjs / survey-creator

An extensible JavaScript form builder library that generated form JSON schemas behind the scenes. It features a drag-and-drop UI, CSS Theme Editor, and GUI for conditional logic and form branching.

Home Page:https://surveyjs.io/open-source

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduce a property to hide survey results from the Complete Page in the Preview tab

JaneSjs opened this issue · comments

commented

IMPLEMENTED

You can now disable the previewShowResults property if you want to hide the survey results table from the Complete Page in the Preview tab.

import { SurveyCreatorModel } from "survey-creator-core";
const creatorOptions = {
  // ...
  previewShowResults: false
};
const creator = new SurveyCreatorModel(creatorOptions);

Documentation


Task: hide the Survey Results section which appears after survey completion:
In the meantime, it is only possible to do so via CSS.

.svd-test-results {
  display: none;
}

image

User inquiries: