↧
Answer by Maxim Kolesnikov for Struts 2 if-else tag
Recheck that your listmovies is not an empty collection and invert your condition to simplify it:<s:if test="%{listmovies.isEmpty()}">No movies!</s:if><s:else><s:iterator...
View ArticleStruts 2 if-else tag
I'm quite certain I'm missing something utterly insignificant, but I've not been able to figure it out. I'm using struts 2 tags in my jsp to iterate over an object and display the results. This is...
View Article