You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a problem in CNM because when org unit tree question is loaded in screen in DynamicTabAdapter line 622 we to realize this code:
if(questionView instanceof CommonQuestionView){
((CommonQuestionView) questionView).setQuestion(QuestionMapper.mapFromDbToDomain(screenQuestionDB));
}
This code is added for connect RegExpValidations.
This code realize one query per option to load option attributes during question mapping
For release c0.5 in cnm to avoid slow performance (issue #2309) we refactor the above code to:
if(questionView instanceof CommonQuestionView && requireQuestionOptionValidations(questionView)){
((CommonQuestionView) questionView).setQuestion(QuestionMapper.mapFromDbToDomain(screenQuestionDB));
}
Please when this issue is realized remove requireQuestionOptionValidations condition
No description provided.
The text was updated successfully, but these errors were encountered: