How would I get the length of an ArrayList using a JSF EL expression?
ArrayList
#{MyBean.somelist.length}
does not work.
You mean size() don't you?
#{MyBean.somelist.size()}
works for me (using JBoss Seam which has the Jboss EL extensions)