[Duplicate] How to Display multiple rows from Map object into VM file?

Pooja Singh May 12, 2017

I am trying to implement a JIRA report module. For this I am making use of the AbstractReport class which has generateReportHtml() method.

I have the following data that is being passed from java class to vm file:

Map<String, Object> velocityParams = new HashMap<String, Object>();

...

velocityParams.put("issueKey", issueKey);
velocityParams.put("userName", userName);
velocityParams.put("updateDate", updatedDate);
velocityParams.put("fromIssueType", fromIssueType);
velocityParams.put("toIssueType", toIssueType);

return descriptor.getHtml("view", velocityParams);

I want to display all the data through vm file 

But I am unable to display multiple rows using foreach loop

Thanks in advance

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Answer accepted
Sam Hall
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 12, 2017

A duplicate was raised due to this queston getting stuck in Spam quarantine: https://community.atlassian.com/t5/JIRA-questions/Displaying-multiple-rows-from-Map-object-into-VM-file/qaq-p/586570

Please answer on this question.