sameer666 wrote:i have attached a patch for /opt/otrs-3.1.1/Kernel/Output/HTML/Standard/AgentSurveyEditQuestions.dtl
hope it help others

You sir, are amazing. Thank you so much for a link to that file.
The changes in the patch are as follows:
Edit the AgentSurveyEditQuestions.dtl
Line 40 reads:
Change line 40 to read:
Line 41 is blank:
Add the div close tag
Before:
Code: Select all
39 <input type="text" id="Question" name="Question" class="Validate_Required $QData{"QuestionErrorClass"} " size="60" />
40 $QData{"SelectionType"}
41
42 <div id="QuestionError" class="TooltipErrorMessage">
After:
Code: Select all
39 <input type="text" id="Question" name="Question" class="Validate_Required $QData{"QuestionErrorClass"} " size="60" />
40 $Data{"SelectionType"}
41 </div>
42 <div id="QuestionError" class="TooltipErrorMessage">
Thanks!