You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2010/10/01 10:21:22 UTC

svn commit: r1003429 - /myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/webapp/server-info.jsp

Author: lofwyr
Date: Fri Oct  1 08:21:21 2010
New Revision: 1003429

URL: http://svn.apache.org/viewvc?rev=1003429&view=rev
Log:
minor changes

Modified:
    myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/webapp/server-info.jsp

Modified: myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/webapp/server-info.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/webapp/server-info.jsp?rev=1003429&r1=1003428&r2=1003429&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/webapp/server-info.jsp (original)
+++ myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/webapp/server-info.jsp Fri Oct  1 08:21:21 2010
@@ -41,21 +41,24 @@
           readonly="true"
           label="Operating System"/>
 
-      <tc:sheet value="#{activities.values}" var="activity">
-        <tc:column label="Session Id" sortable="true">
+      <tc:sheet value="#{activities.values}" var="activity" rendered="#{info.enabled}"
+                showRowRange="left" showPageRange="right" showDirectLinks="center">
+        <tc:column label="Session Id">
           <tc:out value="#{activity.sessionId}"/>
         </tc:column>
-        <tc:column label="Creation Date" sortable="true">
+        <tc:column label="Creation Date">
           <tc:out value="#{activity.creationDate}"/>
         </tc:column>
-        <tc:column label="Jsf Request Count" sortable="true">
+        <tc:column label="Jsf Request Count">
           <tc:out value="#{activity.jsfRequest}"/>
         </tc:column>
-        <tc:column label="Ajax Request Count" sortable="true">
+        <tc:column label="Ajax Request Count">
           <tc:out value="#{activity.ajaxRequest}"/>
         </tc:column>
       </tc:sheet>
 
+      <tc:cell rendered="#{not info.enabled}"/>
+
     </tc:box>
   </jsp:body>
 </layout:overview>