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

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -