Hello SurveyJs Team,
I want to make the order of the names of the questions the same as the order when Create, not the alphabetical order of the letter.
I mean here:
Kind Regards,
Amro
Hello SurveyJs Team,
I want to make the order of the names of the questions the same as the order when Create, not the alphabetical order of the letter.
I mean here:
Kind Regards,
Amro
Hello Amro,
By default, question names are sorted in ascending order in a Logic rule's question list.
If you wish to display questions as they appear in a survey, handle the creator.onConditionQuestionsGetList event and set options.sortOrder
to none
to disable sorting of a question list.
JavaScriptcreator.onConditionQuestionsGetList.add((sender, options)=> {
options.sortOrder = 'none';
})
Please let me know if you have any questions or require further assistance.
Hello,
I created a separate ticket on your behalf: T14004: Add Search functionality for question names in a Logic rule's question list. We placed it in our processing queue and will process it shortly.