i have list of values(e.g 100).
using logic:iterate, how can i print the multiples of 5th
element?
how the logic:iterate will understand the multiples of 5.

Answers were Sorted based on User's Feedback



i have list of values(e.g 100). using logic:iterate, how can i print the multiples of 5th elemen..

Answer / murali krishna yella

ya.. this will surely work fine

<logic:iterate id="item" name="listName" scope="request"
indexId="index">
<%
if( (index%5)==0 ){
<bean:write name="item"/>
}
%>
</logic:iterate>

Is This Answer Correct ?    22 Yes 2 No

i have list of values(e.g 100). using logic:iterate, how can i print the multiples of 5th elemen..

Answer / sharmila

You can try "indexId" param in the logic:iterate

It will give us the index value. So, inside the loop, you
can check if index value is multiple of 5 then only show the
record from the bean.

Is This Answer Correct ?    6 Yes 5 No

Post New Answer

More Struts Interview Questions

what are componeents presents in Strutsconfig.xml?

2 Answers   HCL,


What’s the difference between struts and espresso?

0 Answers  


What is the use of form bean in struts?

0 Answers  


which MVC architecture struts follows and why?

6 Answers   IBM,


What is the use of jsonvalidation in struts?

0 Answers  


What is the purpose of struts.properties in struct2?

0 Answers  


what is a RequestProcessor?

5 Answers   TCS, Wipro,


How can we group related actions in one group in Struts?

0 Answers  


How do I access token?

0 Answers  


What are the contents on web.xml in struts application ?

0 Answers  


Are interceptors and filters different?

0 Answers  


List the important attribute and elements of action mapping under struts.

0 Answers  


Categories