[jboss-user] [JBoss Seam] - Re: JBoss EL performance vs Sun EL

dustismo do-not-reply at jboss.com
Thu Sep 20 13:07:30 EDT 2007


We had similar issues with rendering large tables.  The problem was fixed by simply outjecting the variables instead of accessing them through the bean.

So in you example try:


  | @Out
  | public String[][][] getData() {
  | 	return data;
  | }
  | 
and in the view:


  | <ui:repeat value="#{data}" var="row" varStatus="index">
  | 

hope that helps,
Dustin

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4086822#4086822

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4086822



More information about the jboss-user mailing list