Customize the Survey Creator UI

Loading...
Sorry, we can't retrieve the data from server. Please comeback later.

Survey options

You may:
  • Show/hide survey tabs.
  • Show/hide options menu button and turn-on valid JSON generation
  • Limit question types you want to have in the toolbox
  • Show toolbox and property grid on the left, right, combine them or hide
  • Change the style of the property grid. Instead of categories show all properties in alphabet order where property name and editor are in one row.
  • Set the designer height

Show/hide survey tabs.

By default, "Survey Designer", "JSON Editor" and "Test Survey" are visible. "Embed Survey" tab is invisible. The following boolean properties in creatorOptions give you the control under them. Please note, that there is no property for "Survey Designer" tab. You can't make it invisible.
  • showJSONEditorTab - Show/hide JSON editor tab. It is true by default.
  • showTestSurveyTab - Show/hide Test Survey tab. It is true by default.
  • showTranslationTab - Show/hide a tab that shows on one page all localized strings for all locales/languages.
  • showLogicTab - Show/hide a tab that shows the Survey logic.
  • showEmbededSurveyTab - Show/hide a tab that shows how to embed the survey into your web page. It is false by default.
var creatorOptions = {showJSONEditorTab: false};
//There will be two tabs visible: "Survey Designer" and "Test Survey"
var creator = new SurveyCreator.SurveyCreator("creatorElement", creatorOptions);

Show property grid in old (classic) style.

By default, property grid displays properties divided by categories. You may change it to the classic property grid view by turnning off showElementEditorAsPropertyGrid option.
var creatorOptions = {showElementEditorAsPropertyGrid: false};
var creator = new SurveyCreator.SurveyCreator("creatorElement", creatorOptions);

Show/hide options menu button and turn-on valid JSON generation.

There is an Options menu button in the creator. You may see it here. It is invisible by default and in the most cases you do not need it showing it to your end-users. However, you may decide to generate a valid JSON, instead of JSON5. The SurveyJS Creator generates JSON5 json by default.
  • generateValidJSON - Generate valid JSON if it is true and a JSON5 - modern, user-friendly if it is false. It is true by default and as result, the generated JSON is valid.
  • showOptions - Show/hide options menu button, it is false by default.
  • Limit question types you want to have in the toolbox

    You may limit question types your end-users may use in the creator.

    The following example show how to show in the toolbox only four question types.

    var creatorOptions = {questionTypes : ["text", "checkbox", "radiogroup", "dropdown"]};
    var creator = new SurveyCreator.SurveyCreator("creatorElement", creatorOptions);
    

    There are more possibilities for toolbox customization. Please go to this demo to learn more about toolbox customization API.

    Set the designer height

    By default the designer height is "75vh". You may find it in the survey-creator.css. You may set the designer height via options. The following examples set the designer height to 700px:
    var creatorOptions = {designerHeight: "700px"};
    var creator = new SurveyCreator.SurveyCreator("creatorElement", creatorOptions);
    

    Control toolbox and properties panel layout

    By default the toolbox is shown on the left and advanced properties panel on the right. But you can control it via the showToolbox and showPropertyGrid options of the creator:
    creator.showToolbox = "right";
    creator.showPropertyGrid = "right";
    

    Why we use cookies.

    This site uses cookies to make your browsing experience more convenient and personal. Cookies store useful information on your computer to help us improve the efficiency and relevance of our site for you. In some cases, they are essential to making the site work properly. By accessing this site, you consent to the use of cookies.

    For more information, refer to DevSoft Baltic’ privacy policy and cookie policy.

    Your renewal subscription expires soon.

    Since the license is perpetual, you will still have permanent access to the product versions released within the first 12 month of the original purchase date.

    If you wish to continue receiving technical support from our Help Desk specialists and maintain access to the latest product updates, make sure to renew your subscription by clicking the "Renew" button below.

    Your renewal subscription has expired.

    Since the license is perpetual, you will still have permanent access to the product versions released within the first 12 month of the original purchase date.

    If you wish to continue receiving technical support from our Help Desk specialists and maintain access to the latest product updates, make sure to renew your subscription by clicking the "Renew" button below.