I have an html template which I use in marionette view . I pass a parameter in the template when I call it inside the render function . I want to add multiple div elements depending on the value of the parameter .How can I add for loop inside html template??
<div> <div> <div> <div id = 'leftArrowImage'> </div> <div id = 'mainViewArea'></div> <div id = 'rightArrowImage'></div> /* I have passed a variable here named allWidgets. I want to add the number of divs(<div ></div>) equal to the length of allWidgets array. How do I do that*/ </div> </div> </div>23 Answers
<link rel="stylesheet" type="text/css" href="Widgets/ReportWidget/styles/scrollLayout.css"/> <div> <div> <div> <div id = 'leftArrowImage'> </div> <div id = 'mainViewArea'></div> <div id = 'rightArrowImage'></div> <% var i; for i in allWidgets{ %> <div > </div> }%> </div> </div> </div>1If you talking about(I am not sure that understand the question exactly),Could you try this;
<div> <div> <div> <div id = 'leftArrowImage'> </div> <div id = 'mainViewArea'></div> <div id = 'rightArrowImage'></div> <c:forEach var="widget" items="${allWidgets}"> // Here, you can add parameters about widget objects in allWidgets <div ></div> </c:forEach> </div> </div> </div> You must also define the top of your jsp file below code,
<%@ taglib prefix="c" uri=""%> 2If you are in Angular use *ngFor where w is now each element in allWidgets array and will create a div for each element. You may need binding around the [data-role].
<div *ngFor="let w of allWidgets"> <div></div> </div> 1