jsf 2 - JSF - Browse and print values from ArrayList<String[]> using EL -


i have arraylist bean :

... public arraylist<string[]> getarticlelist() {     ... } ... 

i need print these values (with getter method) using el on jsf2 (such #{bean.articleslage}

how can this? cheers

i don't remember if jsf supports arrays, if can convert arraylist<array> arraylist<arraylist<string>>, should work

<ui:repeat value="#{bean.articlelist}" var="t">    <ui:repeat value="#{t}" var="s">       #{s}    </ui:repeat> </ui:repeat> 

Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -