Closed gologames closed 3 years ago
Knockout + survey window = ??? missing html section
This is not a bug, but real behavior
Knockout + survey window = ??? undeclared surveyWindow
Should be like:
var survey = new Survey.SurveyWindow(surveyJSON);
survey.show();
survey.onComplete.add(sendDataToServer);
Vue + survey window should be:
HTML
<div id="surveyContainer"><survey-window :survey="survey"/></div>
JavaScript
var survey = new Survey.Model(surveyJSON);
survey.onComplete.add(sendDataToServer);
new Vue({ el: '#surveyContainer', data: { survey: survey } });
Fixed all these issues in Creator V2
Knockout + survey window = ??? missing html section
Vue + survey window = ??? missing instantiating of survey
Angular + survey window = ??? wrong identation