6540140
6540140
Sorry. wrong mention is found. >> survey can move to the next question directly when user select 2 items.. >> when setting... multiple:true + nextStepOnAnswer: true + maxchoicenum: 2
I tried to solve upper issue..(from me ^^;). It works...(Thanks!!) ## MultipleChoiceType.vue ## Add below code...in methods.. ############### methods: { validate() { if (this.question.max === 0) this.question.max = this.question.options.length; if...
Sorry. upper source is not working properly. when you proceed back to previous question..and re-go forward question.. question does not displayed properly... ps. with my poor coding skill..sorry. I'll check...
## upper bug fixed... ## # survey_sample.vue # new QuestionModel({ id: 'a009', //문항번호, 점프때 필요 type: QuestionType.MultipleChoice, // 설문지 타입 multiple: true, // Single Choice max: 3, # MultipleChoiceType.vue #...
Sorry. upper function does not work. when i go back reverse question and forward. question does not displayed. when single select choice question. Sorry!
i have write new code..not in 'validate' but in 'hasValue()'...it works ^^; ## **before)** hasValue() { if (this.question.options.filter(o => o.selected).length) { return true } if (this.question.allowOther) { return this.question.other &&...