Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you call List.size() from a JSF 2.0 Facelets Template?

What is the syntax for calling list.size() in a JSF 2.0 Facelets template (eg, using an h:outputText element)?

like image 949
jsight Avatar asked Aug 26 '09 03:08

jsight


1 Answers

Just try #{myBean.myList.size()}

like image 67
André Avatar answered Oct 24 '22 14:10

André