html - How to specify the elements in bullet points while using <s:iterator>? -
i using s:iterator element in jsp page, value set struts action class. how elements come in bullet points?
<div class="row"> <div class="col-md-6" style="color:graytext;"> <s:iterator value="getkflist()" var="a"> <s:property value="a" /><br> </s:iterator> </div>
got it. simple. sorry simple question. nevertheless, posting solution others' reference.
<div class="row"> <div class="col-md-6" style="color:graytext;"> <s:iterator value="getkflist()" var="a"> <li> <s:property value="a" /> </li> </s:iterator> </div>
Comments
Post a Comment