If anyone has used survey portlet, can you please help me in getting the user information when the full results is clicked in the admin section. Right now it pulls the information for responses, I need to get the username along with the response. Here is the code in survey_results_full_view.jsp I just need a user name against each response.
<td valign="top" class="epi-formLabel" nowrap="nowrap"><mod:i18nValue alias="type" key="survey_results_full_view.question" defaultValue="Question:"/><br /></td>
<td><%= view.getQuestionDescription()%></td>
</tr>
<tr>
<td valign="top" class="epi-formLabel" nowrap="nowrap"><mod:i18nValue alias="type" key="survey_results_full_view.answers" defaultValue="Answers:"/></td>
<td>
<% boolean bNoResponses = true;
while ( enumAns.hasMoreElements() ) {
bNoResponses = false;
%>
<%= (String) enumAns.nextElement()%><br />
<% }
if ( bNoResponses ) {
%>
<mod:i18nValue alias="type" key="survey_results_full_view.no_responses" defaultValue="This question has no responses."/>
<% }%>
</td>
</tr>
</table>