designer.js 488 B

12345678910111213141516171819
  1. SurveyCreator.localization.currentLocale = "ge";
  2. const creatorOptions = {
  3. showLogicTab: true,
  4. isAutoSave: true
  5. };
  6. const creator = new SurveyCreator.SurveyCreator(creatorOptions);
  7. creator.locale = "ge";
  8. document.addEventListener("DOMContentLoaded", function() {
  9. creator.render("surveyCreator");
  10. });
  11. creator.saveSurveyFunc = (saveNo, callback) => {
  12. // If you use localStorage:
  13. window.localStorage.setItem("survey-json", creator.text);
  14. callback(saveNo, true);
  15. };