surveyjs / survey-library

Free JavaScript form builder library with integration for React, Angular, Vue, jQuery, and Knockout.
https://surveyjs.io/form-library
MIT License
4.23k stars 816 forks source link

Identify question of type imagepicker from Survey Response #8981

Closed ajay-shenoy closed 4 weeks ago

ajay-shenoy commented 1 month ago

Is there a way to identify that the response or answer is for a question of type imagepicker in the submitted Survey response.

JaneSjs commented 1 month ago

Hello @ajay-shenoy, A response returned by survey.data doesn't contain information about a question type. If you wish to save a question type in a survey response, use the survey.getPlainData function.

Let me know if it works for you.

ajay-shenoy commented 1 month ago

Tried getPlaindata method on the survey response object however it gives questionname, question title, answer value, answer display value. Didn't get question type in it.

Can you help with an example if possible.

JaneSjs commented 4 weeks ago

Hello, You can obtain a question using the survey.getQuestionByName(questionName) function and check its type using the question.getType() function.

Thank you