AFAIK, no. You have to provide a getter in your backing bean to
delegate that functionality, like this:
public getListSize()
{
return yourList.size();
}
Or, if you are using an extended tomahawk datatable, you can use the
attribute rowCountVar (see the docs for more info [1]), that allows to
show the total number of rows in a table.
Hope that helps,
Bruno
[1] http://myfaces.apache.org/tomahawk/extDataTable.html
On 6/2/06, Furer Alexander <[EMAIL PROTECTED]> wrote:
Hi
Is to possible to get List size in JSF EL ?
Thanks